diff --git a/ComicRack.Engine/IO/ComicExporter.cs b/ComicRack.Engine/IO/ComicExporter.cs
index b91ef6a2..4de79dec 100644
--- a/ComicRack.Engine/IO/ComicExporter.cs
+++ b/ComicRack.Engine/IO/ComicExporter.cs
@@ -66,7 +66,7 @@ public string Export(IPagePool pagePool)
if (File.Exists(targetPath) && existsInDatabase && setting.Target == ExportTarget.ReplaceSource)
{
// If the file exists in the database and we are replacing the source, we throw an exception
- throw new InvalidOperationException(StringUtility.Format(TR.Messages["AlreadyExistsInDatabase", "Resulting operation would result in a duplicate entry in the database, Output file '{0}' already exists in the library"], targetPath));
+ throw new InvalidOperationException(StringUtility.Format(TR.Messages["AlreadyExistsInDatabase", "This operation would result in a duplicate entry in the database, Output file '{0}' already exists in the library"], targetPath));
}
if ((setting.AddToLibrary || setting.Target == ExportTarget.ReplaceSource) && Providers.Readers.GetFormatProviderType(setting.FormatId) == null)
{
diff --git a/ComicRack.Engine/Metadata/VirtualTags/VirtualTag.cs b/ComicRack.Engine/Metadata/VirtualTags/VirtualTag.cs
index d3ccc8e9..ee35604c 100644
--- a/ComicRack.Engine/Metadata/VirtualTags/VirtualTag.cs
+++ b/ComicRack.Engine/Metadata/VirtualTags/VirtualTag.cs
@@ -4,6 +4,7 @@
using System.Linq;
using System.Text;
using System.Xml.Serialization;
+using cYo.Common.Localize;
namespace cYo.Projects.ComicRack.Engine
{
@@ -46,7 +47,7 @@ public VirtualTag(int id, string name, string description, string captionFormat,
public string PropertyName => $"VirtualTag{ID:00}";
[XmlIgnore]
- public string DisplayMember => $"{ID:00}: {Name}{(IsEnabled ? " (Enabled)" : "")}";
+ public string DisplayMember => $"{ID:00}: {Name}{(IsEnabled ? $" ({TR.Default["Enabled"]})" : "")}";
public override bool Equals(object obj)
{
diff --git a/ComicRack.sln b/ComicRack.sln
index 7baaa616..2330643c 100644
--- a/ComicRack.sln
+++ b/ComicRack.sln
@@ -28,7 +28,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5040C603-CDAE-46A1-B23E-CFC29319E770}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
- CompressIconFolders.ps1 = CompressIconFolders.ps1
+ CompressFolders.ps1 = CompressFolders.ps1
directory.build.props = directory.build.props
Installer.iss = Installer.iss
README.md = README.md
diff --git a/ComicRack/ComicRack.csproj b/ComicRack/ComicRack.csproj
index e8ed4ff9..ac788c41 100644
--- a/ComicRack/ComicRack.csproj
+++ b/ComicRack/ComicRack.csproj
@@ -183,7 +183,7 @@
-
-
+
+
\ No newline at end of file
diff --git a/ComicRack/Dialogs/ComicBookDialog.cs b/ComicRack/Dialogs/ComicBookDialog.cs
index dcc558a1..f55a1706 100644
--- a/ComicRack/Dialogs/ComicBookDialog.cs
+++ b/ComicRack/Dialogs/ComicBookDialog.cs
@@ -328,7 +328,7 @@ private void SetDataToEditor(ComicBook comic)
//HACK: When a book contains only one page, display "1/1 Page(s)." Otherwise, it will incorrectly display "Page 2/1 Page(s)."
text = $"{comic.LastPageRead + (comic.PageCount == 1 ? 0 : 1)}/{text}";
- string fileFormat = comic.ActualFileFormat != comic.FileFormat ? $"{comic.ActualFileFormat} (Actual){Environment.NewLine}{comic.FileFormat}" : comic.FileFormat;
+ string fileFormat = comic.ActualFileFormat != comic.FileFormat ? $"{comic.ActualFileFormat} ({TR.Default["Actual"]}){Environment.NewLine}{comic.FileFormat}" : comic.FileFormat;
EditControlUtility.SetLabel(lblPages, text);
EditControlUtility.SetLabel(lblType, $"{fileFormat}/{comic.FileSizeAsText}");
diff --git a/ComicRack/Dialogs/DeviceEditControl.Designer.cs b/ComicRack/Dialogs/DeviceEditControl.Designer.cs
index 78971fff..d16b94e1 100644
--- a/ComicRack/Dialogs/DeviceEditControl.Designer.cs
+++ b/ComicRack/Dialogs/DeviceEditControl.Designer.cs
@@ -206,7 +206,7 @@ private void InitializeComponent()
this.chkOnlyChecked.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
this.chkOnlyChecked.Location = new System.Drawing.Point(15, 91);
this.chkOnlyChecked.Name = "chkOnlyChecked";
- this.chkOnlyChecked.Size = new System.Drawing.Size(102, 17);
+ this.chkOnlyChecked.Size = new System.Drawing.Size(204, 17);
this.chkOnlyChecked.TabIndex = 7;
this.chkOnlyChecked.Text = "Only Checked";
this.chkOnlyChecked.UseVisualStyleBackColor = true;
diff --git a/ComicRack/Dialogs/MatcherEditor.cs b/ComicRack/Dialogs/MatcherEditor.cs
index 4bf7617c..5ee74d83 100644
--- a/ComicRack/Dialogs/MatcherEditor.cs
+++ b/ComicRack/Dialogs/MatcherEditor.cs
@@ -7,6 +7,7 @@
using cYo.Common;
using cYo.Common.Localize;
using cYo.Common.Text;
+using cYo.Common.Windows;
using cYo.Common.Windows.Forms;
using cYo.Common.Windows.Forms.Theme;
using cYo.Projects.ComicRack.Engine;
@@ -64,7 +65,8 @@ public MatcherEditor(ComicBookMatcherCollection matchers, ComicBookValueMatcher
base.Height = btEdit.Bottom + 2;
base.Width = width;
spacing = rtfMatchValue2.Left - rtfMatchValue.Right;
- InitializeMatcher(comicBookMatcher);
+ LocalizeUtility.Localize(TR.Load("MatcherEditor"), cmEdit);
+ InitializeMatcher(comicBookMatcher);
// a button pretending to be a dropdown combobox. lovely.
// let's dress it up as one. Except for dropdown arrow to carot - that's asking too much
// we also have to make it a bit smaller as otherwise borders are out of bounds
diff --git a/ComicRack/Dialogs/PreferencesDialog.Designer.cs b/ComicRack/Dialogs/PreferencesDialog.Designer.cs
index 9facd542..40d72a89 100644
--- a/ComicRack/Dialogs/PreferencesDialog.Designer.cs
+++ b/ComicRack/Dialogs/PreferencesDialog.Designer.cs
@@ -1483,7 +1483,7 @@ private void InitializeComponent()
this.chkIncludeAllAlternateConfigs.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.chkIncludeAllAlternateConfigs.AutoSize = true;
this.chkIncludeAllAlternateConfigs.Location = new System.Drawing.Point(12, 154);
- this.chkIncludeAllAlternateConfigs.Name = "chkIncludeAlternateConfig";
+ this.chkIncludeAllAlternateConfigs.Name = "chkIncludeAllAlternateConfigs";
this.chkIncludeAllAlternateConfigs.Size = new System.Drawing.Size(139, 17);
this.chkIncludeAllAlternateConfigs.TabIndex = 6;
this.chkIncludeAllAlternateConfigs.Text = "Include all Alternate Configs";
@@ -1801,7 +1801,7 @@ private void InitializeComponent()
this.btInsertValue.Size = new System.Drawing.Size(167, 23);
this.btInsertValue.TabIndex = 26;
this.btInsertValue.Text = "Choose Value";
- this.btInsertValue.UseVisualStyleBackColor = true;
+ this.btInsertValue.UseVisualStyleBackColor = true;
//
// lblVirtualTagDescription
//
diff --git a/ComicRack/Dialogs/PreferencesDialog.cs b/ComicRack/Dialogs/PreferencesDialog.cs
index b9390618..0e273a77 100644
--- a/ComicRack/Dialogs/PreferencesDialog.cs
+++ b/ComicRack/Dialogs/PreferencesDialog.cs
@@ -1321,7 +1321,8 @@ private void AddVirtualTags()
for (int id = 1; id <= 20; id++)
{
VirtualTag vtag = Program.Settings.VirtualTags.FirstOrDefault(x => x.ID == id);
- string name = $"Virtual Tag #{id:00}";
+ string vtagText = LocalizeUtility.GetText(this, "VirtualTag", "Virtual Tag");
+ string name = $"{vtagText} #{id:00}";
vtag = vtag is null
? new VirtualTag(id, name, name, string.Empty, isDefault: true) //If the data doesn't already exists, create an empty tag.
: new VirtualTag(vtag.ID, vtag.Name, vtag.Description, vtag.CaptionFormat, vtag.IsEnabled, vtag.IsDefault); // Otherwise create a new instance so that it doesn't edit the original until we save.
@@ -1410,6 +1411,7 @@ private void ResetVirtualTagsCaptionControls()
{
//Reset Insert Value button, Prefix & Suffix Textbox
btInsertValue.Text = "Choose Value";
+ LocalizeUtility.Localize(TR.Load(base.Name), btInsertValue);
btInsertValue.Tag = null;
txtCaptionPrefix.Text = string.Empty;
txtCaptionSuffix.Text = string.Empty;
diff --git a/ComicRack/Dialogs/QuickRatingDialog.cs b/ComicRack/Dialogs/QuickRatingDialog.cs
index f1f87836..3a37ed5e 100644
--- a/ComicRack/Dialogs/QuickRatingDialog.cs
+++ b/ComicRack/Dialogs/QuickRatingDialog.cs
@@ -3,6 +3,7 @@
using System.Windows.Forms;
using cYo.Common.ComponentModel;
using cYo.Common.Drawing;
+using cYo.Common.Localize;
using cYo.Common.Windows;
using cYo.Common.Windows.Forms;
using cYo.Projects.ComicRack.Engine;
@@ -66,7 +67,7 @@ public static bool Show(IWin32Window parent, ComicBook book)
}
using (QuickRatingDialog quickRatingDialog = new QuickRatingDialog())
{
- quickRatingDialog.Text = quickRatingDialog.Text + " - " + book.CaptionWithoutTitle;
+ quickRatingDialog.Text = $"{LocalizeUtility.GetText(quickRatingDialog, nameof(QuickRatingDialog), quickRatingDialog.Text)} - {book.CaptionWithoutTitle}";
quickRatingDialog.txReview.Text = book.Review;
quickRatingDialog.txRating.Rating = book.Rating;
quickRatingDialog.chkShow.Checked = Program.Settings.AutoShowQuickReview;
diff --git a/ComicRack/Output/Languages/cs-CZ.zip b/ComicRack/Output/Languages/cs-CZ.zip
deleted file mode 100644
index f073d402..00000000
Binary files a/ComicRack/Output/Languages/cs-CZ.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/cs-CZ/AddItemDialog.xml b/ComicRack/Output/Languages/cs-CZ/AddItemDialog.xml
new file mode 100644
index 00000000..e70f0f61
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Columns.xml b/ComicRack/Output/Languages/cs-CZ/Columns.xml
new file mode 100644
index 00000000..c02ab707
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Columns.xml
@@ -0,0 +1,200 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicBook.xml b/ComicRack/Output/Languages/cs-CZ/ComicBook.xml
new file mode 100644
index 00000000..a099bbc8
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicBook.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicBookDialog.xml b/ComicRack/Output/Languages/cs-CZ/ComicBookDialog.xml
new file mode 100644
index 00000000..923b1107
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicBookDialog.xml
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicBrowserControl.xml b/ComicRack/Output/Languages/cs-CZ/ComicBrowserControl.xml
new file mode 100644
index 00000000..022db1cd
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicBrowserControl.xml
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/cs-CZ/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..37887e2b
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicDataPasteDialog.xml
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/cs-CZ/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..b5add377
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicInfo.xml b/ComicRack/Output/Languages/cs-CZ/ComicInfo.xml
new file mode 100644
index 00000000..c4cdd65f
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicInfo.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/cs-CZ/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..b1f1df7d
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/cs-CZ/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..91dfd20b
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicListLibraryBrowser.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicPagePosition.xml b/ComicRack/Output/Languages/cs-CZ/ComicPagePosition.xml
new file mode 100644
index 00000000..e76bbf6d
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicPageType.xml b/ComicRack/Output/Languages/cs-CZ/ComicPageType.xml
new file mode 100644
index 00000000..c9ca219f
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicPagesView.xml b/ComicRack/Output/Languages/cs-CZ/ComicPagesView.xml
new file mode 100644
index 00000000..170dd440
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ComicTextElements.xml b/ComicRack/Output/Languages/cs-CZ/ComicTextElements.xml
new file mode 100644
index 00000000..b1d138f6
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ComicTextElements.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/CommandKeys.xml b/ComicRack/Output/Languages/cs-CZ/CommandKeys.xml
new file mode 100644
index 00000000..478e639a
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/CommandKeys.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Common.xml b/ComicRack/Output/Languages/cs-CZ/Common.xml
new file mode 100644
index 00000000..b3487703
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Common.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/CrashDialog.xml b/ComicRack/Output/Languages/cs-CZ/CrashDialog.xml
new file mode 100644
index 00000000..1050e133
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Default.xml b/ComicRack/Output/Languages/cs-CZ/Default.xml
new file mode 100644
index 00000000..3fb0fcc0
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Default.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/DeleteItemDialog.xml b/ComicRack/Output/Languages/cs-CZ/DeleteItemDialog.xml
new file mode 100644
index 00000000..771b38d6
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/DeviceSelectDialog.xml b/ComicRack/Output/Languages/cs-CZ/DeviceSelectDialog.xml
new file mode 100644
index 00000000..0bd0c760
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/DeviceSelectDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/DevicesEditDialog.xml b/ComicRack/Output/Languages/cs-CZ/DevicesEditDialog.xml
new file mode 100644
index 00000000..c1c3b804
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/DevicesEditDialog.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/DonationDialog.xml b/ComicRack/Output/Languages/cs-CZ/DonationDialog.xml
new file mode 100644
index 00000000..e95b813f
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/EditListDialog.xml b/ComicRack/Output/Languages/cs-CZ/EditListDialog.xml
new file mode 100644
index 00000000..139f5103
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/EditListDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ExportComicsDialog.xml b/ComicRack/Output/Languages/cs-CZ/ExportComicsDialog.xml
new file mode 100644
index 00000000..083a6adb
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ExportComicsDialog.xml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ExportErrorsDialog.xml b/ComicRack/Output/Languages/cs-CZ/ExportErrorsDialog.xml
new file mode 100644
index 00000000..56538aee
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/FileFilter.xml b/ComicRack/Output/Languages/cs-CZ/FileFilter.xml
new file mode 100644
index 00000000..d6065300
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/FileFilter.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/FolderListDialog.xml b/ComicRack/Output/Languages/cs-CZ/FolderListDialog.xml
new file mode 100644
index 00000000..aabdf623
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/FolderListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Groups.xml b/ComicRack/Output/Languages/cs-CZ/Groups.xml
new file mode 100644
index 00000000..98f39252
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Groups.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ImageRotation.xml b/ComicRack/Output/Languages/cs-CZ/ImageRotation.xml
new file mode 100644
index 00000000..3d451ba2
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ItemView.xml b/ComicRack/Output/Languages/cs-CZ/ItemView.xml
new file mode 100644
index 00000000..a5c56309
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ItemViewMode.xml b/ComicRack/Output/Languages/cs-CZ/ItemViewMode.xml
new file mode 100644
index 00000000..df72e573
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Keyboard.xml b/ComicRack/Output/Languages/cs-CZ/Keyboard.xml
new file mode 100644
index 00000000..2b4d2943
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Keyboard.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/cs-CZ/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..c23a1e86
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/KeyboardShortcutEditor.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/LanguageInfo.xml b/ComicRack/Output/Languages/cs-CZ/LanguageInfo.xml
new file mode 100644
index 00000000..0ce0d7d1
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/LanguageInfo.xml
@@ -0,0 +1,7 @@
+
+
+ Petr Baštan, ERRA
+ Česká lokalizace (0.9.155); první verze Petr Baštan (snb7@seznam.cz), poslední verze ERRA (errain@seznam.cz)
+ false
+ cs-CZ
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ListEditorDialog.xml b/ComicRack/Output/Languages/cs-CZ/ListEditorDialog.xml
new file mode 100644
index 00000000..97dcab6d
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ListEditorDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ListLayoutDialog.xml b/ComicRack/Output/Languages/cs-CZ/ListLayoutDialog.xml
new file mode 100644
index 00000000..5259268e
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ListLayoutDialog.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ListSelectorControl.xml b/ComicRack/Output/Languages/cs-CZ/ListSelectorControl.xml
new file mode 100644
index 00000000..14aa641d
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/MagnifySetupControl.xml b/ComicRack/Output/Languages/cs-CZ/MagnifySetupControl.xml
new file mode 100644
index 00000000..328bdc4b
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/MainForm.xml b/ComicRack/Output/Languages/cs-CZ/MainForm.xml
new file mode 100644
index 00000000..11b48ced
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/MainForm.xml
@@ -0,0 +1,272 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/MainView.xml b/ComicRack/Output/Languages/cs-CZ/MainView.xml
new file mode 100644
index 00000000..25650d68
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/MainView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/MatcherEditor.xml b/ComicRack/Output/Languages/cs-CZ/MatcherEditor.xml
new file mode 100644
index 00000000..0c4614b9
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/MatcherEditor.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Matchers.xml b/ComicRack/Output/Languages/cs-CZ/Matchers.xml
new file mode 100644
index 00000000..edba9382
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Matchers.xml
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Messages.xml b/ComicRack/Output/Languages/cs-CZ/Messages.xml
new file mode 100644
index 00000000..2b69ad17
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Messages.xml
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/cs-CZ/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..e851c0c6
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/MultipleComicBooksDialog.xml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/NetStatsDialog.xml b/ComicRack/Output/Languages/cs-CZ/NetStatsDialog.xml
new file mode 100644
index 00000000..1332716c
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/NewsDialog.xml b/ComicRack/Output/Languages/cs-CZ/NewsDialog.xml
new file mode 100644
index 00000000..776899bf
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/OpenRemoteDialog.xml b/ComicRack/Output/Languages/cs-CZ/OpenRemoteDialog.xml
new file mode 100644
index 00000000..a9b50811
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/PagesView.xml b/ComicRack/Output/Languages/cs-CZ/PagesView.xml
new file mode 100644
index 00000000..ca2bbb41
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/PagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/PasswordDialog.xml b/ComicRack/Output/Languages/cs-CZ/PasswordDialog.xml
new file mode 100644
index 00000000..c1405260
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/PendingTasksDialog.xml b/ComicRack/Output/Languages/cs-CZ/PendingTasksDialog.xml
new file mode 100644
index 00000000..9425b0ce
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/PluginEngine.xml b/ComicRack/Output/Languages/cs-CZ/PluginEngine.xml
new file mode 100644
index 00000000..8f5de175
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/PluginEngine.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/PreferencesDialog.xml b/ComicRack/Output/Languages/cs-CZ/PreferencesDialog.xml
new file mode 100644
index 00000000..9e4563d3
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/PreferencesDialog.xml
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ProgressDialog.xml b/ComicRack/Output/Languages/cs-CZ/ProgressDialog.xml
new file mode 100644
index 00000000..5d39b172
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/QuestionDialog.xml b/ComicRack/Output/Languages/cs-CZ/QuestionDialog.xml
new file mode 100644
index 00000000..937c2fd7
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/QuickOpenView.xml b/ComicRack/Output/Languages/cs-CZ/QuickOpenView.xml
new file mode 100644
index 00000000..0f8295a8
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ReaderForm.xml b/ComicRack/Output/Languages/cs-CZ/ReaderForm.xml
new file mode 100644
index 00000000..6979d7ec
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/cs-CZ/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..9d2d3aa3
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Script.Autonumber.xml b/ComicRack/Output/Languages/cs-CZ/Script.Autonumber.xml
new file mode 100644
index 00000000..61954eef
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Script.CommitProposed.xml b/ComicRack/Output/Languages/cs-CZ/Script.CommitProposed.xml
new file mode 100644
index 00000000..22c9c417
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Script.NewComics.xml b/ComicRack/Output/Languages/cs-CZ/Script.NewComics.xml
new file mode 100644
index 00000000..f9edb601
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/cs-CZ/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..5ab345d7
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Script.SaveCSVList.xml b/ComicRack/Output/Languages/cs-CZ/Script.SaveCSVList.xml
new file mode 100644
index 00000000..017085b1
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/cs-CZ/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..ad906f84
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/SearchBrowser.xml b/ComicRack/Output/Languages/cs-CZ/SearchBrowser.xml
new file mode 100644
index 00000000..4803c654
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/SearchBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/SearchMenu.xml b/ComicRack/Output/Languages/cs-CZ/SearchMenu.xml
new file mode 100644
index 00000000..5abbea2e
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Settings.xml b/ComicRack/Output/Languages/cs-CZ/Settings.xml
new file mode 100644
index 00000000..37cbc52c
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Settings.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ShowErrorsDialog.xml b/ComicRack/Output/Languages/cs-CZ/ShowErrorsDialog.xml
new file mode 100644
index 00000000..8ce1eb16
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ShowErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/SmallComicPreview.xml b/ComicRack/Output/Languages/cs-CZ/SmallComicPreview.xml
new file mode 100644
index 00000000..56a3250c
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/SmallComicPreview.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/SmartListDialog.xml b/ComicRack/Output/Languages/cs-CZ/SmartListDialog.xml
new file mode 100644
index 00000000..03e5e750
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/SmartListDialog.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/TasksDialog.xml b/ComicRack/Output/Languages/cs-CZ/TasksDialog.xml
new file mode 100644
index 00000000..83d3f272
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/TextBoxContextMenu.xml b/ComicRack/Output/Languages/cs-CZ/TextBoxContextMenu.xml
new file mode 100644
index 00000000..6fe8706b
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/TextBoxContextMenu.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/Textures.xml b/ComicRack/Output/Languages/cs-CZ/Textures.xml
new file mode 100644
index 00000000..eda8346e
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/Textures.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ValueEditorDialog.xml b/ComicRack/Output/Languages/cs-CZ/ValueEditorDialog.xml
new file mode 100644
index 00000000..8a7a413e
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ValueEditorDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/cs-CZ/ZoomDialog.xml b/ComicRack/Output/Languages/cs-CZ/ZoomDialog.xml
new file mode 100644
index 00000000..82a6cbc3
--- /dev/null
+++ b/ComicRack/Output/Languages/cs-CZ/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de.zip b/ComicRack/Output/Languages/de.zip
deleted file mode 100644
index e479a07d..00000000
Binary files a/ComicRack/Output/Languages/de.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/de/AddItemDialog.xml b/ComicRack/Output/Languages/de/AddItemDialog.xml
new file mode 100644
index 00000000..861c1ae9
--- /dev/null
+++ b/ComicRack/Output/Languages/de/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/Columns.xml b/ComicRack/Output/Languages/de/Columns.xml
new file mode 100644
index 00000000..4ad8c141
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Columns.xml
@@ -0,0 +1,210 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ComicBook.xml b/ComicRack/Output/Languages/de/ComicBook.xml
new file mode 100644
index 00000000..155dac69
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicBook.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ComicBookDialog.xml b/ComicRack/Output/Languages/de/ComicBookDialog.xml
new file mode 100644
index 00000000..4532c33b
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicBookDialog.xml
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ComicBrowserControl.xml b/ComicRack/Output/Languages/de/ComicBrowserControl.xml
new file mode 100644
index 00000000..d84e5f79
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicBrowserControl.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/de/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..94b8eebe
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicDataPasteDialog.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/de/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..7ee4acb0
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ComicInfo.xml b/ComicRack/Output/Languages/de/ComicInfo.xml
new file mode 100644
index 00000000..ef40726c
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicInfo.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/de/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..3c0dc7ed
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/de/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..c235a9c4
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicListLibraryBrowser.xml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ComicPagePosition.xml b/ComicRack/Output/Languages/de/ComicPagePosition.xml
new file mode 100644
index 00000000..bf651585
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/ComicPageType.xml b/ComicRack/Output/Languages/de/ComicPageType.xml
new file mode 100644
index 00000000..f3916dd3
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ComicPagesView.xml b/ComicRack/Output/Languages/de/ComicPagesView.xml
new file mode 100644
index 00000000..f592319b
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ComicTextElements.xml b/ComicRack/Output/Languages/de/ComicTextElements.xml
new file mode 100644
index 00000000..66972a2c
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ComicTextElements.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/CommandKeys.xml b/ComicRack/Output/Languages/de/CommandKeys.xml
new file mode 100644
index 00000000..638e28d0
--- /dev/null
+++ b/ComicRack/Output/Languages/de/CommandKeys.xml
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/Common.xml b/ComicRack/Output/Languages/de/Common.xml
new file mode 100644
index 00000000..6e014669
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Common.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/CrashDialog.xml b/ComicRack/Output/Languages/de/CrashDialog.xml
new file mode 100644
index 00000000..0f718a93
--- /dev/null
+++ b/ComicRack/Output/Languages/de/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/Default.xml b/ComicRack/Output/Languages/de/Default.xml
new file mode 100644
index 00000000..0326fc12
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Default.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/DeleteItemDialog.xml b/ComicRack/Output/Languages/de/DeleteItemDialog.xml
new file mode 100644
index 00000000..db63aa45
--- /dev/null
+++ b/ComicRack/Output/Languages/de/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/DeviceSelectDialog.xml b/ComicRack/Output/Languages/de/DeviceSelectDialog.xml
new file mode 100644
index 00000000..0a12f471
--- /dev/null
+++ b/ComicRack/Output/Languages/de/DeviceSelectDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/DevicesEditDialog.xml b/ComicRack/Output/Languages/de/DevicesEditDialog.xml
new file mode 100644
index 00000000..3be73df9
--- /dev/null
+++ b/ComicRack/Output/Languages/de/DevicesEditDialog.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/DonationDialog.xml b/ComicRack/Output/Languages/de/DonationDialog.xml
new file mode 100644
index 00000000..251032e3
--- /dev/null
+++ b/ComicRack/Output/Languages/de/DonationDialog.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/EditListDialog.xml b/ComicRack/Output/Languages/de/EditListDialog.xml
new file mode 100644
index 00000000..1402cbbb
--- /dev/null
+++ b/ComicRack/Output/Languages/de/EditListDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/ExportComicsDialog.xml b/ComicRack/Output/Languages/de/ExportComicsDialog.xml
new file mode 100644
index 00000000..20cef299
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ExportComicsDialog.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/FileFilter.xml b/ComicRack/Output/Languages/de/FileFilter.xml
new file mode 100644
index 00000000..23317d33
--- /dev/null
+++ b/ComicRack/Output/Languages/de/FileFilter.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/Groups.xml b/ComicRack/Output/Languages/de/Groups.xml
new file mode 100644
index 00000000..bd130c17
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Groups.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ImageRotation.xml b/ComicRack/Output/Languages/de/ImageRotation.xml
new file mode 100644
index 00000000..27f86494
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ItemView.xml b/ComicRack/Output/Languages/de/ItemView.xml
new file mode 100644
index 00000000..75893672
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ItemViewMode.xml b/ComicRack/Output/Languages/de/ItemViewMode.xml
new file mode 100644
index 00000000..94903f39
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/Keyboard.xml b/ComicRack/Output/Languages/de/Keyboard.xml
new file mode 100644
index 00000000..ba67f2a9
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Keyboard.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/de/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..6b42e5c1
--- /dev/null
+++ b/ComicRack/Output/Languages/de/KeyboardShortcutEditor.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/LanguageInfo.xml b/ComicRack/Output/Languages/de/LanguageInfo.xml
new file mode 100644
index 00000000..e48eec26
--- /dev/null
+++ b/ComicRack/Output/Languages/de/LanguageInfo.xml
@@ -0,0 +1,6 @@
+
+
+ cYo
+ Deutsche Lokalisierung
+ de
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ListEditorDialog.xml b/ComicRack/Output/Languages/de/ListEditorDialog.xml
new file mode 100644
index 00000000..998a3f18
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ListEditorDialog.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ListLayoutDialog.xml b/ComicRack/Output/Languages/de/ListLayoutDialog.xml
new file mode 100644
index 00000000..099e45f9
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ListLayoutDialog.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ListSelectorControl.xml b/ComicRack/Output/Languages/de/ListSelectorControl.xml
new file mode 100644
index 00000000..b0aba302
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/MagnifySetupControl.xml b/ComicRack/Output/Languages/de/MagnifySetupControl.xml
new file mode 100644
index 00000000..0748e842
--- /dev/null
+++ b/ComicRack/Output/Languages/de/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/MainForm.xml b/ComicRack/Output/Languages/de/MainForm.xml
new file mode 100644
index 00000000..c434dc6c
--- /dev/null
+++ b/ComicRack/Output/Languages/de/MainForm.xml
@@ -0,0 +1,275 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/MainView.xml b/ComicRack/Output/Languages/de/MainView.xml
new file mode 100644
index 00000000..160ee861
--- /dev/null
+++ b/ComicRack/Output/Languages/de/MainView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/MatcherEditor.xml b/ComicRack/Output/Languages/de/MatcherEditor.xml
new file mode 100644
index 00000000..ffd2de09
--- /dev/null
+++ b/ComicRack/Output/Languages/de/MatcherEditor.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/Matchers.xml b/ComicRack/Output/Languages/de/Matchers.xml
new file mode 100644
index 00000000..8068d6c6
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Matchers.xml
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/Messages.xml b/ComicRack/Output/Languages/de/Messages.xml
new file mode 100644
index 00000000..ce37dff4
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Messages.xml
@@ -0,0 +1,152 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/de/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..af4c9576
--- /dev/null
+++ b/ComicRack/Output/Languages/de/MultipleComicBooksDialog.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/NewsDialog.xml b/ComicRack/Output/Languages/de/NewsDialog.xml
new file mode 100644
index 00000000..034c0418
--- /dev/null
+++ b/ComicRack/Output/Languages/de/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/OpenRemoteDialog.xml b/ComicRack/Output/Languages/de/OpenRemoteDialog.xml
new file mode 100644
index 00000000..6f4595e3
--- /dev/null
+++ b/ComicRack/Output/Languages/de/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/PagesView.xml b/ComicRack/Output/Languages/de/PagesView.xml
new file mode 100644
index 00000000..5ff8a2e1
--- /dev/null
+++ b/ComicRack/Output/Languages/de/PagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/PasswordDialog.xml b/ComicRack/Output/Languages/de/PasswordDialog.xml
new file mode 100644
index 00000000..321530bd
--- /dev/null
+++ b/ComicRack/Output/Languages/de/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/PluginEngine.xml b/ComicRack/Output/Languages/de/PluginEngine.xml
new file mode 100644
index 00000000..f710328b
--- /dev/null
+++ b/ComicRack/Output/Languages/de/PluginEngine.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/PreferencesDialog.xml b/ComicRack/Output/Languages/de/PreferencesDialog.xml
new file mode 100644
index 00000000..daa52465
--- /dev/null
+++ b/ComicRack/Output/Languages/de/PreferencesDialog.xml
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ProgressDialog.xml b/ComicRack/Output/Languages/de/ProgressDialog.xml
new file mode 100644
index 00000000..7bd128f7
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/QuestionDialog.xml b/ComicRack/Output/Languages/de/QuestionDialog.xml
new file mode 100644
index 00000000..c49aac8a
--- /dev/null
+++ b/ComicRack/Output/Languages/de/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/QuickOpenView.xml b/ComicRack/Output/Languages/de/QuickOpenView.xml
new file mode 100644
index 00000000..0db84a7d
--- /dev/null
+++ b/ComicRack/Output/Languages/de/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/QuickRatingDialog.xml b/ComicRack/Output/Languages/de/QuickRatingDialog.xml
new file mode 100644
index 00000000..8bc329ec
--- /dev/null
+++ b/ComicRack/Output/Languages/de/QuickRatingDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/ReaderForm.xml b/ComicRack/Output/Languages/de/ReaderForm.xml
new file mode 100644
index 00000000..a2982ec9
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/de/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..7c90b6cd
--- /dev/null
+++ b/ComicRack/Output/Languages/de/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/Script.Autonumber.xml b/ComicRack/Output/Languages/de/Script.Autonumber.xml
new file mode 100644
index 00000000..820dd907
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/Script.CommitProposed.xml b/ComicRack/Output/Languages/de/Script.CommitProposed.xml
new file mode 100644
index 00000000..0f10258a
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/Script.NewComics.xml b/ComicRack/Output/Languages/de/Script.NewComics.xml
new file mode 100644
index 00000000..7d708dbe
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/de/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..4c20e53a
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/Script.SaveCSVList.xml b/ComicRack/Output/Languages/de/Script.SaveCSVList.xml
new file mode 100644
index 00000000..ccd54e9f
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/de/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..bfdf8ee7
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/SearchBrowser.xml b/ComicRack/Output/Languages/de/SearchBrowser.xml
new file mode 100644
index 00000000..40f6885a
--- /dev/null
+++ b/ComicRack/Output/Languages/de/SearchBrowser.xml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/SearchMenu.xml b/ComicRack/Output/Languages/de/SearchMenu.xml
new file mode 100644
index 00000000..591cfd8d
--- /dev/null
+++ b/ComicRack/Output/Languages/de/SearchMenu.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/Settings.xml b/ComicRack/Output/Languages/de/Settings.xml
new file mode 100644
index 00000000..6930483a
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Settings.xml
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ShowErrorsDialog.xml b/ComicRack/Output/Languages/de/ShowErrorsDialog.xml
new file mode 100644
index 00000000..a92361c0
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ShowErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/SmallComicPreview.xml b/ComicRack/Output/Languages/de/SmallComicPreview.xml
new file mode 100644
index 00000000..b4c621d3
--- /dev/null
+++ b/ComicRack/Output/Languages/de/SmallComicPreview.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/SmartListDialog.xml b/ComicRack/Output/Languages/de/SmartListDialog.xml
new file mode 100644
index 00000000..a3459c7d
--- /dev/null
+++ b/ComicRack/Output/Languages/de/SmartListDialog.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/TasksDialog.xml b/ComicRack/Output/Languages/de/TasksDialog.xml
new file mode 100644
index 00000000..81177dd6
--- /dev/null
+++ b/ComicRack/Output/Languages/de/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/TextBoxContextMenu.xml b/ComicRack/Output/Languages/de/TextBoxContextMenu.xml
new file mode 100644
index 00000000..f73d9785
--- /dev/null
+++ b/ComicRack/Output/Languages/de/TextBoxContextMenu.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/Textures.xml b/ComicRack/Output/Languages/de/Textures.xml
new file mode 100644
index 00000000..99134b75
--- /dev/null
+++ b/ComicRack/Output/Languages/de/Textures.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/TwitterPinDialog.xml b/ComicRack/Output/Languages/de/TwitterPinDialog.xml
new file mode 100644
index 00000000..c2344a4f
--- /dev/null
+++ b/ComicRack/Output/Languages/de/TwitterPinDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/de/ValueEditorDialog.xml b/ComicRack/Output/Languages/de/ValueEditorDialog.xml
new file mode 100644
index 00000000..b4b4e7fd
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ValueEditorDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/de/ZoomDialog.xml b/ComicRack/Output/Languages/de/ZoomDialog.xml
new file mode 100644
index 00000000..781eccb5
--- /dev/null
+++ b/ComicRack/Output/Languages/de/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/el-GR.zip b/ComicRack/Output/Languages/el-GR.zip
deleted file mode 100644
index 295b8b96..00000000
Binary files a/ComicRack/Output/Languages/el-GR.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/el-GR/AddItemDialog.xml b/ComicRack/Output/Languages/el-GR/AddItemDialog.xml
new file mode 100644
index 00000000..95e491dd
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Columns.xml b/ComicRack/Output/Languages/el-GR/Columns.xml
new file mode 100644
index 00000000..02f31975
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Columns.xml
@@ -0,0 +1,200 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicBook.xml b/ComicRack/Output/Languages/el-GR/ComicBook.xml
new file mode 100644
index 00000000..d4bee25c
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicBook.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicBookDialog.xml b/ComicRack/Output/Languages/el-GR/ComicBookDialog.xml
new file mode 100644
index 00000000..c984dfc5
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicBookDialog.xml
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicBrowserControl.xml b/ComicRack/Output/Languages/el-GR/ComicBrowserControl.xml
new file mode 100644
index 00000000..d9f0fa6a
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicBrowserControl.xml
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/el-GR/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..0ec62343
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicDataPasteDialog.xml
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/el-GR/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..26206870
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicInfo.xml b/ComicRack/Output/Languages/el-GR/ComicInfo.xml
new file mode 100644
index 00000000..d09f84c7
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicInfo.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/el-GR/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..e91f3324
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/el-GR/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..d46284d6
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicListLibraryBrowser.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicPagePosition.xml b/ComicRack/Output/Languages/el-GR/ComicPagePosition.xml
new file mode 100644
index 00000000..5ebac41e
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicPageType.xml b/ComicRack/Output/Languages/el-GR/ComicPageType.xml
new file mode 100644
index 00000000..df3b0c73
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicPagesView.xml b/ComicRack/Output/Languages/el-GR/ComicPagesView.xml
new file mode 100644
index 00000000..48eb7f21
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ComicTextElements.xml b/ComicRack/Output/Languages/el-GR/ComicTextElements.xml
new file mode 100644
index 00000000..06a2f4f7
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ComicTextElements.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/CommandKeys.xml b/ComicRack/Output/Languages/el-GR/CommandKeys.xml
new file mode 100644
index 00000000..0be0eb04
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/CommandKeys.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Common.xml b/ComicRack/Output/Languages/el-GR/Common.xml
new file mode 100644
index 00000000..f26f9d9b
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Common.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/CrashDialog.xml b/ComicRack/Output/Languages/el-GR/CrashDialog.xml
new file mode 100644
index 00000000..d9c1c4a8
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Default.xml b/ComicRack/Output/Languages/el-GR/Default.xml
new file mode 100644
index 00000000..34ce2371
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Default.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/DeleteItemDialog.xml b/ComicRack/Output/Languages/el-GR/DeleteItemDialog.xml
new file mode 100644
index 00000000..76733a74
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/DeviceSelectDialog.xml b/ComicRack/Output/Languages/el-GR/DeviceSelectDialog.xml
new file mode 100644
index 00000000..e11f8930
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/DeviceSelectDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/DevicesEditDialog.xml b/ComicRack/Output/Languages/el-GR/DevicesEditDialog.xml
new file mode 100644
index 00000000..168e91bb
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/DevicesEditDialog.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/DonationDialog.xml b/ComicRack/Output/Languages/el-GR/DonationDialog.xml
new file mode 100644
index 00000000..e304cdba
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/EditListDialog.xml b/ComicRack/Output/Languages/el-GR/EditListDialog.xml
new file mode 100644
index 00000000..c2516036
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/EditListDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ExportComicsDialog.xml b/ComicRack/Output/Languages/el-GR/ExportComicsDialog.xml
new file mode 100644
index 00000000..c6e13e08
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ExportComicsDialog.xml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ExportErrorsDialog.xml b/ComicRack/Output/Languages/el-GR/ExportErrorsDialog.xml
new file mode 100644
index 00000000..6de20418
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/FileFilter.xml b/ComicRack/Output/Languages/el-GR/FileFilter.xml
new file mode 100644
index 00000000..3c2554df
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/FileFilter.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/FolderListDialog.xml b/ComicRack/Output/Languages/el-GR/FolderListDialog.xml
new file mode 100644
index 00000000..ea065347
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/FolderListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Groups.xml b/ComicRack/Output/Languages/el-GR/Groups.xml
new file mode 100644
index 00000000..933dfa7d
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Groups.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ImageRotation.xml b/ComicRack/Output/Languages/el-GR/ImageRotation.xml
new file mode 100644
index 00000000..29e9fe84
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ItemView.xml b/ComicRack/Output/Languages/el-GR/ItemView.xml
new file mode 100644
index 00000000..22470cfd
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ItemViewMode.xml b/ComicRack/Output/Languages/el-GR/ItemViewMode.xml
new file mode 100644
index 00000000..2a00cf45
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Keyboard.xml b/ComicRack/Output/Languages/el-GR/Keyboard.xml
new file mode 100644
index 00000000..1b69182a
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Keyboard.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/el-GR/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..8a14dc13
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/KeyboardShortcutEditor.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/LanguageInfo.xml b/ComicRack/Output/Languages/el-GR/LanguageInfo.xml
new file mode 100644
index 00000000..4d7d495c
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/LanguageInfo.xml
@@ -0,0 +1,6 @@
+
+
+ Stamatis H. Stamatellos
+ 0.9.152
+ el-GR
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ListEditorDialog.xml b/ComicRack/Output/Languages/el-GR/ListEditorDialog.xml
new file mode 100644
index 00000000..838a59ad
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ListEditorDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ListLayoutDialog.xml b/ComicRack/Output/Languages/el-GR/ListLayoutDialog.xml
new file mode 100644
index 00000000..77455b02
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ListLayoutDialog.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ListSelectorControl.xml b/ComicRack/Output/Languages/el-GR/ListSelectorControl.xml
new file mode 100644
index 00000000..ab23bc0a
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/MagnifySetupControl.xml b/ComicRack/Output/Languages/el-GR/MagnifySetupControl.xml
new file mode 100644
index 00000000..40e9d401
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/MainForm.xml b/ComicRack/Output/Languages/el-GR/MainForm.xml
new file mode 100644
index 00000000..6fa113af
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/MainForm.xml
@@ -0,0 +1,268 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/MainView.xml b/ComicRack/Output/Languages/el-GR/MainView.xml
new file mode 100644
index 00000000..a51d7b13
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/MainView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/MatcherEditor.xml b/ComicRack/Output/Languages/el-GR/MatcherEditor.xml
new file mode 100644
index 00000000..ea5dcd29
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/MatcherEditor.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Matchers.xml b/ComicRack/Output/Languages/el-GR/Matchers.xml
new file mode 100644
index 00000000..4ac35906
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Matchers.xml
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Messages.xml b/ComicRack/Output/Languages/el-GR/Messages.xml
new file mode 100644
index 00000000..2e4d478b
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Messages.xml
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/el-GR/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..d4d9cf4f
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/MultipleComicBooksDialog.xml
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/NetStatsDialog.xml b/ComicRack/Output/Languages/el-GR/NetStatsDialog.xml
new file mode 100644
index 00000000..e5fb43fa
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/NewsDialog.xml b/ComicRack/Output/Languages/el-GR/NewsDialog.xml
new file mode 100644
index 00000000..0a89c2e3
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/OpenRemoteDialog.xml b/ComicRack/Output/Languages/el-GR/OpenRemoteDialog.xml
new file mode 100644
index 00000000..4b01928f
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/PagesView.xml b/ComicRack/Output/Languages/el-GR/PagesView.xml
new file mode 100644
index 00000000..7e9f984d
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/PagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/PasswordDialog.xml b/ComicRack/Output/Languages/el-GR/PasswordDialog.xml
new file mode 100644
index 00000000..ab8389f7
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/PendingTasksDialog.xml b/ComicRack/Output/Languages/el-GR/PendingTasksDialog.xml
new file mode 100644
index 00000000..df44199a
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/PluginEngine.xml b/ComicRack/Output/Languages/el-GR/PluginEngine.xml
new file mode 100644
index 00000000..ed47860c
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/PluginEngine.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/PreferencesDialog.xml b/ComicRack/Output/Languages/el-GR/PreferencesDialog.xml
new file mode 100644
index 00000000..cdbc4984
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/PreferencesDialog.xml
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ProgressDialog.xml b/ComicRack/Output/Languages/el-GR/ProgressDialog.xml
new file mode 100644
index 00000000..e3cf0a86
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/QuestionDialog.xml b/ComicRack/Output/Languages/el-GR/QuestionDialog.xml
new file mode 100644
index 00000000..61fb42e1
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/QuickOpenView.xml b/ComicRack/Output/Languages/el-GR/QuickOpenView.xml
new file mode 100644
index 00000000..36f4a8a8
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ReaderForm.xml b/ComicRack/Output/Languages/el-GR/ReaderForm.xml
new file mode 100644
index 00000000..1ee68249
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/el-GR/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..a8e3c69c
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Script.Autonumber.xml b/ComicRack/Output/Languages/el-GR/Script.Autonumber.xml
new file mode 100644
index 00000000..25aedbc5
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Script.CommitProposed.xml b/ComicRack/Output/Languages/el-GR/Script.CommitProposed.xml
new file mode 100644
index 00000000..75d4391f
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Script.NewComics.xml b/ComicRack/Output/Languages/el-GR/Script.NewComics.xml
new file mode 100644
index 00000000..c7b84da9
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/el-GR/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..7b62fdf2
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Script.SaveCSVList.xml b/ComicRack/Output/Languages/el-GR/Script.SaveCSVList.xml
new file mode 100644
index 00000000..6971a452
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/el-GR/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..aec81f81
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/SearchBrowser.xml b/ComicRack/Output/Languages/el-GR/SearchBrowser.xml
new file mode 100644
index 00000000..9089aa9c
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/SearchBrowser.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/SearchMenu.xml b/ComicRack/Output/Languages/el-GR/SearchMenu.xml
new file mode 100644
index 00000000..1bcb6b97
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Settings.xml b/ComicRack/Output/Languages/el-GR/Settings.xml
new file mode 100644
index 00000000..657ccf20
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Settings.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ShowErrorsDialog.xml b/ComicRack/Output/Languages/el-GR/ShowErrorsDialog.xml
new file mode 100644
index 00000000..becc40eb
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ShowErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/SmallComicPreview.xml b/ComicRack/Output/Languages/el-GR/SmallComicPreview.xml
new file mode 100644
index 00000000..3389f7e4
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/SmallComicPreview.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/SmartListDialog.xml b/ComicRack/Output/Languages/el-GR/SmartListDialog.xml
new file mode 100644
index 00000000..1ac3e84f
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/SmartListDialog.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/TasksDialog.xml b/ComicRack/Output/Languages/el-GR/TasksDialog.xml
new file mode 100644
index 00000000..53c6c5d6
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/TextBoxContextMenu.xml b/ComicRack/Output/Languages/el-GR/TextBoxContextMenu.xml
new file mode 100644
index 00000000..6879f1c1
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/TextBoxContextMenu.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/Textures.xml b/ComicRack/Output/Languages/el-GR/Textures.xml
new file mode 100644
index 00000000..4e38d3bf
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/Textures.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ValueEditorDialog.xml b/ComicRack/Output/Languages/el-GR/ValueEditorDialog.xml
new file mode 100644
index 00000000..be2c8d40
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ValueEditorDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/el-GR/ZoomDialog.xml b/ComicRack/Output/Languages/el-GR/ZoomDialog.xml
new file mode 100644
index 00000000..4e2b0491
--- /dev/null
+++ b/ComicRack/Output/Languages/el-GR/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es.zip b/ComicRack/Output/Languages/es.zip
deleted file mode 100644
index 6da5d9b7..00000000
Binary files a/ComicRack/Output/Languages/es.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/es/AddItemDialog.xml b/ComicRack/Output/Languages/es/AddItemDialog.xml
new file mode 100644
index 00000000..b96c9dfe
--- /dev/null
+++ b/ComicRack/Output/Languages/es/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Columns.xml b/ComicRack/Output/Languages/es/Columns.xml
new file mode 100644
index 00000000..9dd4f08a
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Columns.xml
@@ -0,0 +1,207 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicBook.xml b/ComicRack/Output/Languages/es/ComicBook.xml
new file mode 100644
index 00000000..8d71a819
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicBook.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicBookDialog.xml b/ComicRack/Output/Languages/es/ComicBookDialog.xml
new file mode 100644
index 00000000..c53386b3
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicBookDialog.xml
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicBrowserControl.xml b/ComicRack/Output/Languages/es/ComicBrowserControl.xml
new file mode 100644
index 00000000..bd871a53
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicBrowserControl.xml
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/es/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..a8ce923c
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicDataPasteDialog.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/es/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..da404eca
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicInfo.xml b/ComicRack/Output/Languages/es/ComicInfo.xml
new file mode 100644
index 00000000..0113a840
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicInfo.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/es/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..b5aa0f76
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/es/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..699bab37
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicListLibraryBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicPagePosition.xml b/ComicRack/Output/Languages/es/ComicPagePosition.xml
new file mode 100644
index 00000000..367a71ac
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicPageType.xml b/ComicRack/Output/Languages/es/ComicPageType.xml
new file mode 100644
index 00000000..0ba0ba48
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicPagesView.xml b/ComicRack/Output/Languages/es/ComicPagesView.xml
new file mode 100644
index 00000000..5ab980d3
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ComicTextElements.xml b/ComicRack/Output/Languages/es/ComicTextElements.xml
new file mode 100644
index 00000000..f0e11754
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ComicTextElements.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/CommandKeys.xml b/ComicRack/Output/Languages/es/CommandKeys.xml
new file mode 100644
index 00000000..b4b5ba1b
--- /dev/null
+++ b/ComicRack/Output/Languages/es/CommandKeys.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Common.xml b/ComicRack/Output/Languages/es/Common.xml
new file mode 100644
index 00000000..116e3ae8
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Common.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/CrashDialog.xml b/ComicRack/Output/Languages/es/CrashDialog.xml
new file mode 100644
index 00000000..3321fa47
--- /dev/null
+++ b/ComicRack/Output/Languages/es/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Default.xml b/ComicRack/Output/Languages/es/Default.xml
new file mode 100644
index 00000000..e7d22b60
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Default.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/DeleteItemDialog.xml b/ComicRack/Output/Languages/es/DeleteItemDialog.xml
new file mode 100644
index 00000000..3dabac48
--- /dev/null
+++ b/ComicRack/Output/Languages/es/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/DeviceSelectDialog.xml b/ComicRack/Output/Languages/es/DeviceSelectDialog.xml
new file mode 100644
index 00000000..081cd269
--- /dev/null
+++ b/ComicRack/Output/Languages/es/DeviceSelectDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/DevicesEditDialog.xml b/ComicRack/Output/Languages/es/DevicesEditDialog.xml
new file mode 100644
index 00000000..9d25a285
--- /dev/null
+++ b/ComicRack/Output/Languages/es/DevicesEditDialog.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/DonationDialog.xml b/ComicRack/Output/Languages/es/DonationDialog.xml
new file mode 100644
index 00000000..6fb00d25
--- /dev/null
+++ b/ComicRack/Output/Languages/es/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/EditListDialog.xml b/ComicRack/Output/Languages/es/EditListDialog.xml
new file mode 100644
index 00000000..2c6589c0
--- /dev/null
+++ b/ComicRack/Output/Languages/es/EditListDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ExportComicsDialog.xml b/ComicRack/Output/Languages/es/ExportComicsDialog.xml
new file mode 100644
index 00000000..670da8a5
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ExportComicsDialog.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ExportErrorsDialog.xml b/ComicRack/Output/Languages/es/ExportErrorsDialog.xml
new file mode 100644
index 00000000..e4e5277d
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/FileFilter.xml b/ComicRack/Output/Languages/es/FileFilter.xml
new file mode 100644
index 00000000..283649eb
--- /dev/null
+++ b/ComicRack/Output/Languages/es/FileFilter.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/FolderListDialog.xml b/ComicRack/Output/Languages/es/FolderListDialog.xml
new file mode 100644
index 00000000..a5d13801
--- /dev/null
+++ b/ComicRack/Output/Languages/es/FolderListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Groups.xml b/ComicRack/Output/Languages/es/Groups.xml
new file mode 100644
index 00000000..5dc79336
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Groups.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ImageRotation.xml b/ComicRack/Output/Languages/es/ImageRotation.xml
new file mode 100644
index 00000000..63c65b9b
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ItemView.xml b/ComicRack/Output/Languages/es/ItemView.xml
new file mode 100644
index 00000000..60bacc1f
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ItemViewMode.xml b/ComicRack/Output/Languages/es/ItemViewMode.xml
new file mode 100644
index 00000000..9a53cf88
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Keyboard.xml b/ComicRack/Output/Languages/es/Keyboard.xml
new file mode 100644
index 00000000..ce8e577e
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Keyboard.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/es/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..b7e9a6e2
--- /dev/null
+++ b/ComicRack/Output/Languages/es/KeyboardShortcutEditor.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/LanguageInfo.xml b/ComicRack/Output/Languages/es/LanguageInfo.xml
new file mode 100644
index 00000000..0471ae61
--- /dev/null
+++ b/ComicRack/Output/Languages/es/LanguageInfo.xml
@@ -0,0 +1,9 @@
+
+
+ Ikaru, Ricesvinto, Aerinx, Ahroun
+ 1ª traducción Ikaru
+(v0.9.140) - Ricesvinto
+(v0.9.146) - Aerinx - Ahroun(v.0.9.153
+ false
+ es
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ListEditorDialog.xml b/ComicRack/Output/Languages/es/ListEditorDialog.xml
new file mode 100644
index 00000000..bef88f7d
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ListEditorDialog.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ListLayoutDialog.xml b/ComicRack/Output/Languages/es/ListLayoutDialog.xml
new file mode 100644
index 00000000..0f849d82
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ListLayoutDialog.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ListSelectorControl.xml b/ComicRack/Output/Languages/es/ListSelectorControl.xml
new file mode 100644
index 00000000..92e1b62a
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/MagnifySetupControl.xml b/ComicRack/Output/Languages/es/MagnifySetupControl.xml
new file mode 100644
index 00000000..3729eb87
--- /dev/null
+++ b/ComicRack/Output/Languages/es/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/MainForm.xml b/ComicRack/Output/Languages/es/MainForm.xml
new file mode 100644
index 00000000..02085837
--- /dev/null
+++ b/ComicRack/Output/Languages/es/MainForm.xml
@@ -0,0 +1,269 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/MainView.xml b/ComicRack/Output/Languages/es/MainView.xml
new file mode 100644
index 00000000..5842b8af
--- /dev/null
+++ b/ComicRack/Output/Languages/es/MainView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/MatcherEditor.xml b/ComicRack/Output/Languages/es/MatcherEditor.xml
new file mode 100644
index 00000000..21f40114
--- /dev/null
+++ b/ComicRack/Output/Languages/es/MatcherEditor.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Matchers.xml b/ComicRack/Output/Languages/es/Matchers.xml
new file mode 100644
index 00000000..0e8dc7b9
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Matchers.xml
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Messages.xml b/ComicRack/Output/Languages/es/Messages.xml
new file mode 100644
index 00000000..1f161612
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Messages.xml
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/es/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..50dcfcbe
--- /dev/null
+++ b/ComicRack/Output/Languages/es/MultipleComicBooksDialog.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/NetStatsDialog.xml b/ComicRack/Output/Languages/es/NetStatsDialog.xml
new file mode 100644
index 00000000..5bbe466a
--- /dev/null
+++ b/ComicRack/Output/Languages/es/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/NewsDialog.xml b/ComicRack/Output/Languages/es/NewsDialog.xml
new file mode 100644
index 00000000..f8f38102
--- /dev/null
+++ b/ComicRack/Output/Languages/es/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/OpenRemoteDialog.xml b/ComicRack/Output/Languages/es/OpenRemoteDialog.xml
new file mode 100644
index 00000000..c051873c
--- /dev/null
+++ b/ComicRack/Output/Languages/es/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/PagesView.xml b/ComicRack/Output/Languages/es/PagesView.xml
new file mode 100644
index 00000000..aaa579ee
--- /dev/null
+++ b/ComicRack/Output/Languages/es/PagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/PasswordDialog.xml b/ComicRack/Output/Languages/es/PasswordDialog.xml
new file mode 100644
index 00000000..124ae522
--- /dev/null
+++ b/ComicRack/Output/Languages/es/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/PendingTasksDialog.xml b/ComicRack/Output/Languages/es/PendingTasksDialog.xml
new file mode 100644
index 00000000..a871ac8b
--- /dev/null
+++ b/ComicRack/Output/Languages/es/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/PluginEngine.xml b/ComicRack/Output/Languages/es/PluginEngine.xml
new file mode 100644
index 00000000..48498e05
--- /dev/null
+++ b/ComicRack/Output/Languages/es/PluginEngine.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/PreferencesDialog.xml b/ComicRack/Output/Languages/es/PreferencesDialog.xml
new file mode 100644
index 00000000..b3f6a185
--- /dev/null
+++ b/ComicRack/Output/Languages/es/PreferencesDialog.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ProgressDialog.xml b/ComicRack/Output/Languages/es/ProgressDialog.xml
new file mode 100644
index 00000000..578616b5
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/QuestionDialog.xml b/ComicRack/Output/Languages/es/QuestionDialog.xml
new file mode 100644
index 00000000..9bf22847
--- /dev/null
+++ b/ComicRack/Output/Languages/es/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/QuickOpenView.xml b/ComicRack/Output/Languages/es/QuickOpenView.xml
new file mode 100644
index 00000000..48b382a3
--- /dev/null
+++ b/ComicRack/Output/Languages/es/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ReaderForm.xml b/ComicRack/Output/Languages/es/ReaderForm.xml
new file mode 100644
index 00000000..60167bf7
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/es/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..6841d0e4
--- /dev/null
+++ b/ComicRack/Output/Languages/es/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Script.Autonumber.xml b/ComicRack/Output/Languages/es/Script.Autonumber.xml
new file mode 100644
index 00000000..22da5465
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Script.CommitProposed.xml b/ComicRack/Output/Languages/es/Script.CommitProposed.xml
new file mode 100644
index 00000000..769dddc7
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Script.NewComics.xml b/ComicRack/Output/Languages/es/Script.NewComics.xml
new file mode 100644
index 00000000..795426ac
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/es/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..e881d850
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Script.SaveCSVList.xml b/ComicRack/Output/Languages/es/Script.SaveCSVList.xml
new file mode 100644
index 00000000..de17ff1b
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/es/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..64508186
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/SearchBrowser.xml b/ComicRack/Output/Languages/es/SearchBrowser.xml
new file mode 100644
index 00000000..fe22ad8b
--- /dev/null
+++ b/ComicRack/Output/Languages/es/SearchBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/SearchMenu.xml b/ComicRack/Output/Languages/es/SearchMenu.xml
new file mode 100644
index 00000000..b775163f
--- /dev/null
+++ b/ComicRack/Output/Languages/es/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Settings.xml b/ComicRack/Output/Languages/es/Settings.xml
new file mode 100644
index 00000000..db143b51
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Settings.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ShowErrorsDialog.xml b/ComicRack/Output/Languages/es/ShowErrorsDialog.xml
new file mode 100644
index 00000000..5974c13a
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ShowErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/SmallComicPreview.xml b/ComicRack/Output/Languages/es/SmallComicPreview.xml
new file mode 100644
index 00000000..6846ed0d
--- /dev/null
+++ b/ComicRack/Output/Languages/es/SmallComicPreview.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/SmartListDialog.xml b/ComicRack/Output/Languages/es/SmartListDialog.xml
new file mode 100644
index 00000000..dfcef5ff
--- /dev/null
+++ b/ComicRack/Output/Languages/es/SmartListDialog.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/TasksDialog.xml b/ComicRack/Output/Languages/es/TasksDialog.xml
new file mode 100644
index 00000000..40e0f8b4
--- /dev/null
+++ b/ComicRack/Output/Languages/es/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/TextBoxContextMenu.xml b/ComicRack/Output/Languages/es/TextBoxContextMenu.xml
new file mode 100644
index 00000000..e04228bd
--- /dev/null
+++ b/ComicRack/Output/Languages/es/TextBoxContextMenu.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/Textures.xml b/ComicRack/Output/Languages/es/Textures.xml
new file mode 100644
index 00000000..2865304f
--- /dev/null
+++ b/ComicRack/Output/Languages/es/Textures.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ValueEditorDialog.xml b/ComicRack/Output/Languages/es/ValueEditorDialog.xml
new file mode 100644
index 00000000..0df17aca
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ValueEditorDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/es/ZoomDialog.xml b/ComicRack/Output/Languages/es/ZoomDialog.xml
new file mode 100644
index 00000000..8711ca9b
--- /dev/null
+++ b/ComicRack/Output/Languages/es/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi.zip b/ComicRack/Output/Languages/fi.zip
deleted file mode 100644
index 1905fde0..00000000
Binary files a/ComicRack/Output/Languages/fi.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/fi/AddItemDialog.xml b/ComicRack/Output/Languages/fi/AddItemDialog.xml
new file mode 100644
index 00000000..baeb6805
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Columns.xml b/ComicRack/Output/Languages/fi/Columns.xml
new file mode 100644
index 00000000..8f3500a1
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Columns.xml
@@ -0,0 +1,145 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ComicBook.xml b/ComicRack/Output/Languages/fi/ComicBook.xml
new file mode 100644
index 00000000..540e451d
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ComicBook.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ComicBookDialog.xml b/ComicRack/Output/Languages/fi/ComicBookDialog.xml
new file mode 100644
index 00000000..5611e3da
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ComicBookDialog.xml
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ComicBrowserControl.xml b/ComicRack/Output/Languages/fi/ComicBrowserControl.xml
new file mode 100644
index 00000000..dd1a28d2
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ComicBrowserControl.xml
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/fi/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..6138a049
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ComicDataPasteDialog.xml
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/fi/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..6bc4d010
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/fi/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..cf23e81a
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/fi/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..1a4fba10
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ComicListLibraryBrowser.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ComicPageType.xml b/ComicRack/Output/Languages/fi/ComicPageType.xml
new file mode 100644
index 00000000..9996cdc6
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ComicPagesView.xml b/ComicRack/Output/Languages/fi/ComicPagesView.xml
new file mode 100644
index 00000000..40fadbe4
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ComicPagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/CommandKeys.xml b/ComicRack/Output/Languages/fi/CommandKeys.xml
new file mode 100644
index 00000000..b82e229a
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/CommandKeys.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/CrashDialog.xml b/ComicRack/Output/Languages/fi/CrashDialog.xml
new file mode 100644
index 00000000..87b2006a
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Default.xml b/ComicRack/Output/Languages/fi/Default.xml
new file mode 100644
index 00000000..0fde69a4
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Default.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/DeleteItemDialog.xml b/ComicRack/Output/Languages/fi/DeleteItemDialog.xml
new file mode 100644
index 00000000..0ceae049
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/DonationDialog.xml b/ComicRack/Output/Languages/fi/DonationDialog.xml
new file mode 100644
index 00000000..98f049b4
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ExportComicsDialog.xml b/ComicRack/Output/Languages/fi/ExportComicsDialog.xml
new file mode 100644
index 00000000..4764d52f
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ExportComicsDialog.xml
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ExportErrorsDialog.xml b/ComicRack/Output/Languages/fi/ExportErrorsDialog.xml
new file mode 100644
index 00000000..d3dc2ab3
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/FileFilter.xml b/ComicRack/Output/Languages/fi/FileFilter.xml
new file mode 100644
index 00000000..24960f37
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/FileFilter.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/FolderListDialog.xml b/ComicRack/Output/Languages/fi/FolderListDialog.xml
new file mode 100644
index 00000000..116b9886
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/FolderListDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Groups.xml b/ComicRack/Output/Languages/fi/Groups.xml
new file mode 100644
index 00000000..8b8266c8
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Groups.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ImageRotation.xml b/ComicRack/Output/Languages/fi/ImageRotation.xml
new file mode 100644
index 00000000..528fd0e5
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ItemView.xml b/ComicRack/Output/Languages/fi/ItemView.xml
new file mode 100644
index 00000000..2f0fad8d
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ItemViewMode.xml b/ComicRack/Output/Languages/fi/ItemViewMode.xml
new file mode 100644
index 00000000..adc09b66
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Keyboard.xml b/ComicRack/Output/Languages/fi/Keyboard.xml
new file mode 100644
index 00000000..da5979f5
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Keyboard.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/fi/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..22aa733f
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/KeyboardShortcutEditor.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/LanguageInfo.xml b/ComicRack/Output/Languages/fi/LanguageInfo.xml
new file mode 100644
index 00000000..33fbc951
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/LanguageInfo.xml
@@ -0,0 +1,6 @@
+
+
+ Ville Juvonen
+ Drink milk and eat vegetables.
+ fi
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ListEditorDialog.xml b/ComicRack/Output/Languages/fi/ListEditorDialog.xml
new file mode 100644
index 00000000..ac376cce
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ListEditorDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ListLayoutDialog.xml b/ComicRack/Output/Languages/fi/ListLayoutDialog.xml
new file mode 100644
index 00000000..340b7dae
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ListLayoutDialog.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ListSelectorControl.xml b/ComicRack/Output/Languages/fi/ListSelectorControl.xml
new file mode 100644
index 00000000..aef20fc0
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/MagnifySetupControl.xml b/ComicRack/Output/Languages/fi/MagnifySetupControl.xml
new file mode 100644
index 00000000..8fc352e3
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/MainForm.xml b/ComicRack/Output/Languages/fi/MainForm.xml
new file mode 100644
index 00000000..5d1eb11b
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/MainForm.xml
@@ -0,0 +1,262 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/MainView.xml b/ComicRack/Output/Languages/fi/MainView.xml
new file mode 100644
index 00000000..3209f52c
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/MainView.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Matchers.xml b/ComicRack/Output/Languages/fi/Matchers.xml
new file mode 100644
index 00000000..3f12a15d
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Matchers.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Messages.xml b/ComicRack/Output/Languages/fi/Messages.xml
new file mode 100644
index 00000000..fc9b4b86
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Messages.xml
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/fi/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..62bf0e93
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/MultipleComicBooksDialog.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/NetStatsDialog.xml b/ComicRack/Output/Languages/fi/NetStatsDialog.xml
new file mode 100644
index 00000000..183b7774
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/NewsDialog.xml b/ComicRack/Output/Languages/fi/NewsDialog.xml
new file mode 100644
index 00000000..8bc87aeb
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/OpenRemoteDialog.xml b/ComicRack/Output/Languages/fi/OpenRemoteDialog.xml
new file mode 100644
index 00000000..d681e7dd
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/PagesView.xml b/ComicRack/Output/Languages/fi/PagesView.xml
new file mode 100644
index 00000000..2eb4b9b8
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/PagesView.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/PasswordDialog.xml b/ComicRack/Output/Languages/fi/PasswordDialog.xml
new file mode 100644
index 00000000..00b47417
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/PendingTasksDialog.xml b/ComicRack/Output/Languages/fi/PendingTasksDialog.xml
new file mode 100644
index 00000000..73cf2404
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/PluginEngine.xml b/ComicRack/Output/Languages/fi/PluginEngine.xml
new file mode 100644
index 00000000..3c75bcb8
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/PluginEngine.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/PreferencesDialog.xml b/ComicRack/Output/Languages/fi/PreferencesDialog.xml
new file mode 100644
index 00000000..0a93429b
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/PreferencesDialog.xml
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ProgressDialog.xml b/ComicRack/Output/Languages/fi/ProgressDialog.xml
new file mode 100644
index 00000000..e66257b7
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/QuestionDialog.xml b/ComicRack/Output/Languages/fi/QuestionDialog.xml
new file mode 100644
index 00000000..404f6e1d
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/QuickOpenView.xml b/ComicRack/Output/Languages/fi/QuickOpenView.xml
new file mode 100644
index 00000000..8d7feb45
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ReaderForm.xml b/ComicRack/Output/Languages/fi/ReaderForm.xml
new file mode 100644
index 00000000..9f4b5f56
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/fi/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..8c461a89
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Script.Autonumber.xml b/ComicRack/Output/Languages/fi/Script.Autonumber.xml
new file mode 100644
index 00000000..7cf418d5
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Script.CommitProposed.xml b/ComicRack/Output/Languages/fi/Script.CommitProposed.xml
new file mode 100644
index 00000000..f4c8d43d
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Script.NewComics.xml b/ComicRack/Output/Languages/fi/Script.NewComics.xml
new file mode 100644
index 00000000..8029d3cf
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/fi/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..aefc875d
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Script.SaveCSVList.xml b/ComicRack/Output/Languages/fi/Script.SaveCSVList.xml
new file mode 100644
index 00000000..489c18eb
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/fi/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..5855f55c
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/SearchBrowser.xml b/ComicRack/Output/Languages/fi/SearchBrowser.xml
new file mode 100644
index 00000000..d1293f89
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/SearchBrowser.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/SearchMenu.xml b/ComicRack/Output/Languages/fi/SearchMenu.xml
new file mode 100644
index 00000000..79a8a31f
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Settings.xml b/ComicRack/Output/Languages/fi/Settings.xml
new file mode 100644
index 00000000..5de231ce
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Settings.xml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/SmallComicPreview.xml b/ComicRack/Output/Languages/fi/SmallComicPreview.xml
new file mode 100644
index 00000000..ce75737a
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/SmallComicPreview.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/SmartListDialog.xml b/ComicRack/Output/Languages/fi/SmartListDialog.xml
new file mode 100644
index 00000000..d37e97a5
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/SmartListDialog.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/TasksDialog.xml b/ComicRack/Output/Languages/fi/TasksDialog.xml
new file mode 100644
index 00000000..76c91607
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/TextBoxContextMenu.xml b/ComicRack/Output/Languages/fi/TextBoxContextMenu.xml
new file mode 100644
index 00000000..6fb48265
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/TextBoxContextMenu.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/Textures.xml b/ComicRack/Output/Languages/fi/Textures.xml
new file mode 100644
index 00000000..09bf36f7
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/Textures.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fi/ZoomDialog.xml b/ComicRack/Output/Languages/fi/ZoomDialog.xml
new file mode 100644
index 00000000..5f49e16e
--- /dev/null
+++ b/ComicRack/Output/Languages/fi/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr.zip b/ComicRack/Output/Languages/fr.zip
deleted file mode 100644
index 2495fde5..00000000
Binary files a/ComicRack/Output/Languages/fr.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/fr/AddItemDialog.xml b/ComicRack/Output/Languages/fr/AddItemDialog.xml
new file mode 100644
index 00000000..6bd17a91
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Columns.xml b/ComicRack/Output/Languages/fr/Columns.xml
new file mode 100644
index 00000000..a69e3d71
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Columns.xml
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicBook.xml b/ComicRack/Output/Languages/fr/ComicBook.xml
new file mode 100644
index 00000000..ff2e9ef7
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicBook.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicBookDialog.xml b/ComicRack/Output/Languages/fr/ComicBookDialog.xml
new file mode 100644
index 00000000..865ce512
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicBookDialog.xml
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicBrowserControl.xml b/ComicRack/Output/Languages/fr/ComicBrowserControl.xml
new file mode 100644
index 00000000..e3af968d
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicBrowserControl.xml
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/fr/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..80f60030
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicDataPasteDialog.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/fr/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..a4ae8c65
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicInfo.xml b/ComicRack/Output/Languages/fr/ComicInfo.xml
new file mode 100644
index 00000000..74456472
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicInfo.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/fr/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..131a4493
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/fr/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..b766c681
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicListLibraryBrowser.xml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicPagePosition.xml b/ComicRack/Output/Languages/fr/ComicPagePosition.xml
new file mode 100644
index 00000000..516bca00
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicPageType.xml b/ComicRack/Output/Languages/fr/ComicPageType.xml
new file mode 100644
index 00000000..79aa91bb
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicPagesView.xml b/ComicRack/Output/Languages/fr/ComicPagesView.xml
new file mode 100644
index 00000000..5d5616b7
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ComicTextElements.xml b/ComicRack/Output/Languages/fr/ComicTextElements.xml
new file mode 100644
index 00000000..6500eb83
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ComicTextElements.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/CommandKeys.xml b/ComicRack/Output/Languages/fr/CommandKeys.xml
new file mode 100644
index 00000000..c427da42
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/CommandKeys.xml
@@ -0,0 +1,115 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Common.xml b/ComicRack/Output/Languages/fr/Common.xml
new file mode 100644
index 00000000..066da8cb
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Common.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/CrashDialog.xml b/ComicRack/Output/Languages/fr/CrashDialog.xml
new file mode 100644
index 00000000..9e69860f
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Default.xml b/ComicRack/Output/Languages/fr/Default.xml
new file mode 100644
index 00000000..0ef6aea9
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Default.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/DeleteItemDialog.xml b/ComicRack/Output/Languages/fr/DeleteItemDialog.xml
new file mode 100644
index 00000000..d1db1077
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/DeviceSelectDialog.xml b/ComicRack/Output/Languages/fr/DeviceSelectDialog.xml
new file mode 100644
index 00000000..7a8c4555
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/DeviceSelectDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/DevicesEditDialog.xml b/ComicRack/Output/Languages/fr/DevicesEditDialog.xml
new file mode 100644
index 00000000..cfccfd11
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/DevicesEditDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/DonationDialog.xml b/ComicRack/Output/Languages/fr/DonationDialog.xml
new file mode 100644
index 00000000..a81dd465
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/EditListDialog.xml b/ComicRack/Output/Languages/fr/EditListDialog.xml
new file mode 100644
index 00000000..db2b60b3
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/EditListDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ExportComicsDialog.xml b/ComicRack/Output/Languages/fr/ExportComicsDialog.xml
new file mode 100644
index 00000000..88a998e3
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ExportComicsDialog.xml
@@ -0,0 +1,72 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ExportErrorsDialog.xml b/ComicRack/Output/Languages/fr/ExportErrorsDialog.xml
new file mode 100644
index 00000000..a4d054b9
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/FileFilter.xml b/ComicRack/Output/Languages/fr/FileFilter.xml
new file mode 100644
index 00000000..d88a8d22
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/FileFilter.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/FolderListDialog.xml b/ComicRack/Output/Languages/fr/FolderListDialog.xml
new file mode 100644
index 00000000..38ea6bce
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/FolderListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Groups.xml b/ComicRack/Output/Languages/fr/Groups.xml
new file mode 100644
index 00000000..e5449a00
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Groups.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ImageRotation.xml b/ComicRack/Output/Languages/fr/ImageRotation.xml
new file mode 100644
index 00000000..b1830f87
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ItemView.xml b/ComicRack/Output/Languages/fr/ItemView.xml
new file mode 100644
index 00000000..1a551925
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ItemViewMode.xml b/ComicRack/Output/Languages/fr/ItemViewMode.xml
new file mode 100644
index 00000000..2960b9c0
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Keyboard.xml b/ComicRack/Output/Languages/fr/Keyboard.xml
new file mode 100644
index 00000000..7ae97840
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Keyboard.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/fr/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..f86179dc
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/KeyboardShortcutEditor.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/LanguageInfo.xml b/ComicRack/Output/Languages/fr/LanguageInfo.xml
new file mode 100644
index 00000000..59a6224b
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/LanguageInfo.xml
@@ -0,0 +1,7 @@
+
+
+ Ronan Lévêque, aka {Oo} & maforget
+ 0.9.182 ; Thanks to freMea for some of the translation with the 0.9.136 !
+ false
+ fr
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ListEditorDialog.xml b/ComicRack/Output/Languages/fr/ListEditorDialog.xml
new file mode 100644
index 00000000..5a31ba3a
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ListEditorDialog.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ListLayoutDialog.xml b/ComicRack/Output/Languages/fr/ListLayoutDialog.xml
new file mode 100644
index 00000000..e63eb598
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ListLayoutDialog.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ListSelectorControl.xml b/ComicRack/Output/Languages/fr/ListSelectorControl.xml
new file mode 100644
index 00000000..c26214ec
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/MagnifySetupControl.xml b/ComicRack/Output/Languages/fr/MagnifySetupControl.xml
new file mode 100644
index 00000000..e48f0fd2
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/MainForm.xml b/ComicRack/Output/Languages/fr/MainForm.xml
new file mode 100644
index 00000000..e52ed753
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/MainForm.xml
@@ -0,0 +1,275 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/MainView.xml b/ComicRack/Output/Languages/fr/MainView.xml
new file mode 100644
index 00000000..05a25102
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/MainView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/MatcherEditor.xml b/ComicRack/Output/Languages/fr/MatcherEditor.xml
new file mode 100644
index 00000000..301fed89
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/MatcherEditor.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Matchers.xml b/ComicRack/Output/Languages/fr/Matchers.xml
new file mode 100644
index 00000000..5c120563
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Matchers.xml
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Messages.xml b/ComicRack/Output/Languages/fr/Messages.xml
new file mode 100644
index 00000000..9d73f3d4
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Messages.xml
@@ -0,0 +1,158 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/fr/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..0422dcd7
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/MultipleComicBooksDialog.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/NetStatsDialog.xml b/ComicRack/Output/Languages/fr/NetStatsDialog.xml
new file mode 100644
index 00000000..c9521245
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/NewsDialog.xml b/ComicRack/Output/Languages/fr/NewsDialog.xml
new file mode 100644
index 00000000..dc3f4530
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/OpenRemoteDialog.xml b/ComicRack/Output/Languages/fr/OpenRemoteDialog.xml
new file mode 100644
index 00000000..dcd60778
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/OpenWithDialog.xml b/ComicRack/Output/Languages/fr/OpenWithDialog.xml
new file mode 100644
index 00000000..959e4c74
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/OpenWithDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/fr/PagesView.xml b/ComicRack/Output/Languages/fr/PagesView.xml
new file mode 100644
index 00000000..990b8934
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/PagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/PasswordDialog.xml b/ComicRack/Output/Languages/fr/PasswordDialog.xml
new file mode 100644
index 00000000..80e45103
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/PendingTasksDialog.xml b/ComicRack/Output/Languages/fr/PendingTasksDialog.xml
new file mode 100644
index 00000000..96f008fc
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/PluginEngine.xml b/ComicRack/Output/Languages/fr/PluginEngine.xml
new file mode 100644
index 00000000..0e1529b7
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/PluginEngine.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/PreferencesDialog.xml b/ComicRack/Output/Languages/fr/PreferencesDialog.xml
new file mode 100644
index 00000000..2f0a273f
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/PreferencesDialog.xml
@@ -0,0 +1,179 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ProgressDialog.xml b/ComicRack/Output/Languages/fr/ProgressDialog.xml
new file mode 100644
index 00000000..f484b1ee
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/QuestionDialog.xml b/ComicRack/Output/Languages/fr/QuestionDialog.xml
new file mode 100644
index 00000000..434ee1fe
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/QuickOpenView.xml b/ComicRack/Output/Languages/fr/QuickOpenView.xml
new file mode 100644
index 00000000..20eb0ddc
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/QuickRatingDialog.xml b/ComicRack/Output/Languages/fr/QuickRatingDialog.xml
new file mode 100644
index 00000000..5fd31e99
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/QuickRatingDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ReaderForm.xml b/ComicRack/Output/Languages/fr/ReaderForm.xml
new file mode 100644
index 00000000..04b998eb
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/fr/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..e5c4ce36
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Script.Autonumber.xml b/ComicRack/Output/Languages/fr/Script.Autonumber.xml
new file mode 100644
index 00000000..86bfc2e6
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Script.CommitProposed.xml b/ComicRack/Output/Languages/fr/Script.CommitProposed.xml
new file mode 100644
index 00000000..7bf3545a
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Script.NewComics.xml b/ComicRack/Output/Languages/fr/Script.NewComics.xml
new file mode 100644
index 00000000..62458db8
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/fr/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..ea8c3494
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Script.SaveCSVList.xml b/ComicRack/Output/Languages/fr/Script.SaveCSVList.xml
new file mode 100644
index 00000000..0266ef3b
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/fr/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..8d6074ee
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/SearchBrowser.xml b/ComicRack/Output/Languages/fr/SearchBrowser.xml
new file mode 100644
index 00000000..aca36475
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/SearchBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/SearchMenu.xml b/ComicRack/Output/Languages/fr/SearchMenu.xml
new file mode 100644
index 00000000..974f5010
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Settings.xml b/ComicRack/Output/Languages/fr/Settings.xml
new file mode 100644
index 00000000..de08b075
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Settings.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ShowErrorsDialog.xml b/ComicRack/Output/Languages/fr/ShowErrorsDialog.xml
new file mode 100644
index 00000000..081261c9
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ShowErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/SmallComicPreview.xml b/ComicRack/Output/Languages/fr/SmallComicPreview.xml
new file mode 100644
index 00000000..c15e8181
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/SmallComicPreview.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/SmartListDialog.xml b/ComicRack/Output/Languages/fr/SmartListDialog.xml
new file mode 100644
index 00000000..d4f83045
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/SmartListDialog.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/TasksDialog.xml b/ComicRack/Output/Languages/fr/TasksDialog.xml
new file mode 100644
index 00000000..af03e284
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/TextBoxContextMenu.xml b/ComicRack/Output/Languages/fr/TextBoxContextMenu.xml
new file mode 100644
index 00000000..c805c2f0
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/TextBoxContextMenu.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/Textures.xml b/ComicRack/Output/Languages/fr/Textures.xml
new file mode 100644
index 00000000..373bdc46
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/Textures.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ValueEditorDialog.xml b/ComicRack/Output/Languages/fr/ValueEditorDialog.xml
new file mode 100644
index 00000000..0e4d030b
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ValueEditorDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/fr/ZoomDialog.xml b/ComicRack/Output/Languages/fr/ZoomDialog.xml
new file mode 100644
index 00000000..6e55c7b9
--- /dev/null
+++ b/ComicRack/Output/Languages/fr/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr.zip b/ComicRack/Output/Languages/hr.zip
deleted file mode 100644
index 9e7f02d2..00000000
Binary files a/ComicRack/Output/Languages/hr.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/hr/AddItemDialog.xml b/ComicRack/Output/Languages/hr/AddItemDialog.xml
new file mode 100644
index 00000000..494f46a4
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/Columns.xml b/ComicRack/Output/Languages/hr/Columns.xml
new file mode 100644
index 00000000..060d3bf4
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/Columns.xml
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ComicBook.xml b/ComicRack/Output/Languages/hr/ComicBook.xml
new file mode 100644
index 00000000..bb5a9d9d
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ComicBook.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ComicBookDialog.xml b/ComicRack/Output/Languages/hr/ComicBookDialog.xml
new file mode 100644
index 00000000..dd0ac7bd
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ComicBookDialog.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ComicBrowserControl.xml b/ComicRack/Output/Languages/hr/ComicBrowserControl.xml
new file mode 100644
index 00000000..28df873f
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ComicBrowserControl.xml
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/hr/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..d9f2d602
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ComicDataPasteDialog.xml
@@ -0,0 +1,42 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/hr/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..28e728dc
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/hr/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..6995917e
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ComicListLibraryBrowser.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ComicPageType.xml b/ComicRack/Output/Languages/hr/ComicPageType.xml
new file mode 100644
index 00000000..a3272bd9
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ComicPagesView.xml b/ComicRack/Output/Languages/hr/ComicPagesView.xml
new file mode 100644
index 00000000..2a78122f
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ComicPagesView.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ConversionErrorsDialog.xml b/ComicRack/Output/Languages/hr/ConversionErrorsDialog.xml
new file mode 100644
index 00000000..9c361ac5
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ConversionErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/Default.xml b/ComicRack/Output/Languages/hr/Default.xml
new file mode 100644
index 00000000..9b3ecf48
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/Default.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/DeleteItemDialog.xml b/ComicRack/Output/Languages/hr/DeleteItemDialog.xml
new file mode 100644
index 00000000..92f0e059
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/Groups.xml b/ComicRack/Output/Languages/hr/Groups.xml
new file mode 100644
index 00000000..dc7f9aec
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/Groups.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ItemView.xml b/ComicRack/Output/Languages/hr/ItemView.xml
new file mode 100644
index 00000000..4eca4a12
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ItemView.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/Keyboard.xml b/ComicRack/Output/Languages/hr/Keyboard.xml
new file mode 100644
index 00000000..02806943
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/Keyboard.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/LanguageInfo.xml b/ComicRack/Output/Languages/hr/LanguageInfo.xml
new file mode 100644
index 00000000..da346571
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/LanguageInfo.xml
@@ -0,0 +1,6 @@
+
+
+ Zduke
+ Lokalizacija na Hrvatski
+ hr
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ListLayoutDialog.xml b/ComicRack/Output/Languages/hr/ListLayoutDialog.xml
new file mode 100644
index 00000000..e22209c4
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ListLayoutDialog.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/MagnifySetupControl.xml b/ComicRack/Output/Languages/hr/MagnifySetupControl.xml
new file mode 100644
index 00000000..e3ed0ca3
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/MagnifySetupControl.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/MainForm.xml b/ComicRack/Output/Languages/hr/MainForm.xml
new file mode 100644
index 00000000..74b6ecff
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/MainForm.xml
@@ -0,0 +1,168 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/MainView.xml b/ComicRack/Output/Languages/hr/MainView.xml
new file mode 100644
index 00000000..fdf918d2
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/MainView.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/Matchers.xml b/ComicRack/Output/Languages/hr/Matchers.xml
new file mode 100644
index 00000000..9008c753
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/Matchers.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/Messages.xml b/ComicRack/Output/Languages/hr/Messages.xml
new file mode 100644
index 00000000..922ecf2d
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/Messages.xml
@@ -0,0 +1,62 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/hr/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..595573f4
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/MultipleComicBooksDialog.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/NewsDialog.xml b/ComicRack/Output/Languages/hr/NewsDialog.xml
new file mode 100644
index 00000000..a7d867cb
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/NewsDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/PasswordDialog.xml b/ComicRack/Output/Languages/hr/PasswordDialog.xml
new file mode 100644
index 00000000..fcee73a5
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/PreferencesDialog.xml b/ComicRack/Output/Languages/hr/PreferencesDialog.xml
new file mode 100644
index 00000000..e57b7538
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/PreferencesDialog.xml
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/ProgressDialog.xml b/ComicRack/Output/Languages/hr/ProgressDialog.xml
new file mode 100644
index 00000000..08b4cee1
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/QuestionDialog.xml b/ComicRack/Output/Languages/hr/QuestionDialog.xml
new file mode 100644
index 00000000..b79f933f
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/Script.Autonumber.xml b/ComicRack/Output/Languages/hr/Script.Autonumber.xml
new file mode 100644
index 00000000..d26e83f2
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/Script.Autonumber.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/Script.CommitProposed.xml b/ComicRack/Output/Languages/hr/Script.CommitProposed.xml
new file mode 100644
index 00000000..41a46bc0
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/Script.CommitProposed.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/hr/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..a5ef691f
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/Script.RenameBookFiles.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/Script.SaveCSVList.xml b/ComicRack/Output/Languages/hr/Script.SaveCSVList.xml
new file mode 100644
index 00000000..1acef5b6
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/Script.SaveCSVList.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/SearchBrowser.xml b/ComicRack/Output/Languages/hr/SearchBrowser.xml
new file mode 100644
index 00000000..bc23f5cc
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/SearchBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/Settings.xml b/ComicRack/Output/Languages/hr/Settings.xml
new file mode 100644
index 00000000..f200bdce
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/Settings.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/SmallComicPreview.xml b/ComicRack/Output/Languages/hr/SmallComicPreview.xml
new file mode 100644
index 00000000..8a09bda9
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/SmallComicPreview.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hr/SmartListDialog.xml b/ComicRack/Output/Languages/hr/SmartListDialog.xml
new file mode 100644
index 00000000..c9892d3f
--- /dev/null
+++ b/ComicRack/Output/Languages/hr/SmartListDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu.zip b/ComicRack/Output/Languages/hu.zip
deleted file mode 100644
index 589b95b6..00000000
Binary files a/ComicRack/Output/Languages/hu.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/hu/AddItemDialog.xml b/ComicRack/Output/Languages/hu/AddItemDialog.xml
new file mode 100644
index 00000000..65c77e29
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Columns.xml b/ComicRack/Output/Languages/hu/Columns.xml
new file mode 100644
index 00000000..15ca16be
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Columns.xml
@@ -0,0 +1,200 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicBook.xml b/ComicRack/Output/Languages/hu/ComicBook.xml
new file mode 100644
index 00000000..7674a13b
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicBook.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicBookDialog.xml b/ComicRack/Output/Languages/hu/ComicBookDialog.xml
new file mode 100644
index 00000000..66dd1039
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicBookDialog.xml
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicBrowserControl.xml b/ComicRack/Output/Languages/hu/ComicBrowserControl.xml
new file mode 100644
index 00000000..e7f9c550
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicBrowserControl.xml
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/hu/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..f7544602
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicDataPasteDialog.xml
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/hu/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..29ef3fc0
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicInfo.xml b/ComicRack/Output/Languages/hu/ComicInfo.xml
new file mode 100644
index 00000000..08222446
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicInfo.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/hu/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..aa96b0c8
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/hu/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..520fe11f
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicListLibraryBrowser.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicPagePosition.xml b/ComicRack/Output/Languages/hu/ComicPagePosition.xml
new file mode 100644
index 00000000..35554d63
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicPageType.xml b/ComicRack/Output/Languages/hu/ComicPageType.xml
new file mode 100644
index 00000000..b1ba9894
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicPagesView.xml b/ComicRack/Output/Languages/hu/ComicPagesView.xml
new file mode 100644
index 00000000..f2ff867a
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ComicTextElements.xml b/ComicRack/Output/Languages/hu/ComicTextElements.xml
new file mode 100644
index 00000000..9fa5011c
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ComicTextElements.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/CommandKeys.xml b/ComicRack/Output/Languages/hu/CommandKeys.xml
new file mode 100644
index 00000000..9ac113aa
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/CommandKeys.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Common.xml b/ComicRack/Output/Languages/hu/Common.xml
new file mode 100644
index 00000000..2d748c18
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Common.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/CrashDialog.xml b/ComicRack/Output/Languages/hu/CrashDialog.xml
new file mode 100644
index 00000000..2eac3333
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Default.xml b/ComicRack/Output/Languages/hu/Default.xml
new file mode 100644
index 00000000..40ff0007
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Default.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/DeleteItemDialog.xml b/ComicRack/Output/Languages/hu/DeleteItemDialog.xml
new file mode 100644
index 00000000..50746f5b
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/DeviceSelectDialog.xml b/ComicRack/Output/Languages/hu/DeviceSelectDialog.xml
new file mode 100644
index 00000000..bad8bedc
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/DeviceSelectDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/DevicesEditDialog.xml b/ComicRack/Output/Languages/hu/DevicesEditDialog.xml
new file mode 100644
index 00000000..8d770818
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/DevicesEditDialog.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/DonationDialog.xml b/ComicRack/Output/Languages/hu/DonationDialog.xml
new file mode 100644
index 00000000..d3cbfbdb
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/EditListDialog.xml b/ComicRack/Output/Languages/hu/EditListDialog.xml
new file mode 100644
index 00000000..f1b55e8b
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/EditListDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ExportComicsDialog.xml b/ComicRack/Output/Languages/hu/ExportComicsDialog.xml
new file mode 100644
index 00000000..52dfcf36
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ExportComicsDialog.xml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ExportErrorsDialog.xml b/ComicRack/Output/Languages/hu/ExportErrorsDialog.xml
new file mode 100644
index 00000000..51fd90e5
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/FileFilter.xml b/ComicRack/Output/Languages/hu/FileFilter.xml
new file mode 100644
index 00000000..849d2f83
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/FileFilter.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/FolderListDialog.xml b/ComicRack/Output/Languages/hu/FolderListDialog.xml
new file mode 100644
index 00000000..148448c8
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/FolderListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Groups.xml b/ComicRack/Output/Languages/hu/Groups.xml
new file mode 100644
index 00000000..e123810a
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Groups.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ImageRotation.xml b/ComicRack/Output/Languages/hu/ImageRotation.xml
new file mode 100644
index 00000000..98f3d715
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ItemView.xml b/ComicRack/Output/Languages/hu/ItemView.xml
new file mode 100644
index 00000000..94588d09
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ItemViewMode.xml b/ComicRack/Output/Languages/hu/ItemViewMode.xml
new file mode 100644
index 00000000..af10a801
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Keyboard.xml b/ComicRack/Output/Languages/hu/Keyboard.xml
new file mode 100644
index 00000000..1a83dd7a
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Keyboard.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/hu/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..9e68ba59
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/KeyboardShortcutEditor.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/LanguageInfo.xml b/ComicRack/Output/Languages/hu/LanguageInfo.xml
new file mode 100644
index 00000000..3cc919d7
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/LanguageInfo.xml
@@ -0,0 +1,7 @@
+
+
+ Quicksilver & gunslinger
+
+ false
+ hu
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ListEditorDialog.xml b/ComicRack/Output/Languages/hu/ListEditorDialog.xml
new file mode 100644
index 00000000..0fb008e1
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ListEditorDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ListLayoutDialog.xml b/ComicRack/Output/Languages/hu/ListLayoutDialog.xml
new file mode 100644
index 00000000..1025c792
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ListLayoutDialog.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ListSelectorControl.xml b/ComicRack/Output/Languages/hu/ListSelectorControl.xml
new file mode 100644
index 00000000..a7979c94
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/MagnifySetupControl.xml b/ComicRack/Output/Languages/hu/MagnifySetupControl.xml
new file mode 100644
index 00000000..e31de843
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/MainForm.xml b/ComicRack/Output/Languages/hu/MainForm.xml
new file mode 100644
index 00000000..a8cc5b30
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/MainForm.xml
@@ -0,0 +1,268 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/MainView.xml b/ComicRack/Output/Languages/hu/MainView.xml
new file mode 100644
index 00000000..e5be36d8
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/MainView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/MatcherEditor.xml b/ComicRack/Output/Languages/hu/MatcherEditor.xml
new file mode 100644
index 00000000..2440b252
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/MatcherEditor.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Matchers.xml b/ComicRack/Output/Languages/hu/Matchers.xml
new file mode 100644
index 00000000..e1a372aa
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Matchers.xml
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Messages.xml b/ComicRack/Output/Languages/hu/Messages.xml
new file mode 100644
index 00000000..cfeb859f
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Messages.xml
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/hu/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..a3a6e11b
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/MultipleComicBooksDialog.xml
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/NetStatsDialog.xml b/ComicRack/Output/Languages/hu/NetStatsDialog.xml
new file mode 100644
index 00000000..50c2bea3
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/NewsDialog.xml b/ComicRack/Output/Languages/hu/NewsDialog.xml
new file mode 100644
index 00000000..6603bf72
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/OpenRemoteDialog.xml b/ComicRack/Output/Languages/hu/OpenRemoteDialog.xml
new file mode 100644
index 00000000..08303c23
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/PagesView.xml b/ComicRack/Output/Languages/hu/PagesView.xml
new file mode 100644
index 00000000..e53fd009
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/PagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/PasswordDialog.xml b/ComicRack/Output/Languages/hu/PasswordDialog.xml
new file mode 100644
index 00000000..eac991a5
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/PendingTasksDialog.xml b/ComicRack/Output/Languages/hu/PendingTasksDialog.xml
new file mode 100644
index 00000000..70c85ccb
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/PluginEngine.xml b/ComicRack/Output/Languages/hu/PluginEngine.xml
new file mode 100644
index 00000000..16ad3c5e
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/PluginEngine.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/PreferencesDialog.xml b/ComicRack/Output/Languages/hu/PreferencesDialog.xml
new file mode 100644
index 00000000..9dd5731b
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/PreferencesDialog.xml
@@ -0,0 +1,141 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ProgressDialog.xml b/ComicRack/Output/Languages/hu/ProgressDialog.xml
new file mode 100644
index 00000000..0a37b420
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/QuestionDialog.xml b/ComicRack/Output/Languages/hu/QuestionDialog.xml
new file mode 100644
index 00000000..ff6fe0c5
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/QuickOpenView.xml b/ComicRack/Output/Languages/hu/QuickOpenView.xml
new file mode 100644
index 00000000..4df4c6ee
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ReaderForm.xml b/ComicRack/Output/Languages/hu/ReaderForm.xml
new file mode 100644
index 00000000..5b4804f7
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/hu/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..0cd83041
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Script.Autonumber.xml b/ComicRack/Output/Languages/hu/Script.Autonumber.xml
new file mode 100644
index 00000000..e65e3744
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Script.CommitProposed.xml b/ComicRack/Output/Languages/hu/Script.CommitProposed.xml
new file mode 100644
index 00000000..6d2af25a
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Script.NewComics.xml b/ComicRack/Output/Languages/hu/Script.NewComics.xml
new file mode 100644
index 00000000..cf5c8320
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/hu/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..57565c95
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Script.SaveCSVList.xml b/ComicRack/Output/Languages/hu/Script.SaveCSVList.xml
new file mode 100644
index 00000000..8c8877a6
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/hu/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..b58cc7a3
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/SearchBrowser.xml b/ComicRack/Output/Languages/hu/SearchBrowser.xml
new file mode 100644
index 00000000..9d8c2076
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/SearchBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/SearchMenu.xml b/ComicRack/Output/Languages/hu/SearchMenu.xml
new file mode 100644
index 00000000..4b910365
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Settings.xml b/ComicRack/Output/Languages/hu/Settings.xml
new file mode 100644
index 00000000..cecf3a55
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Settings.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ShowErrorsDialog.xml b/ComicRack/Output/Languages/hu/ShowErrorsDialog.xml
new file mode 100644
index 00000000..64d5fdc6
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ShowErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/SmallComicPreview.xml b/ComicRack/Output/Languages/hu/SmallComicPreview.xml
new file mode 100644
index 00000000..3170d9ce
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/SmallComicPreview.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/SmartListDialog.xml b/ComicRack/Output/Languages/hu/SmartListDialog.xml
new file mode 100644
index 00000000..a19720e0
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/SmartListDialog.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/TasksDialog.xml b/ComicRack/Output/Languages/hu/TasksDialog.xml
new file mode 100644
index 00000000..cc5f45ae
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/TextBoxContextMenu.xml b/ComicRack/Output/Languages/hu/TextBoxContextMenu.xml
new file mode 100644
index 00000000..25a620bf
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/TextBoxContextMenu.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/Textures.xml b/ComicRack/Output/Languages/hu/Textures.xml
new file mode 100644
index 00000000..604c4916
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/Textures.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ValueEditorDialog.xml b/ComicRack/Output/Languages/hu/ValueEditorDialog.xml
new file mode 100644
index 00000000..1163ad10
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ValueEditorDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/hu/ZoomDialog.xml b/ComicRack/Output/Languages/hu/ZoomDialog.xml
new file mode 100644
index 00000000..18e64077
--- /dev/null
+++ b/ComicRack/Output/Languages/hu/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it.zip b/ComicRack/Output/Languages/it.zip
deleted file mode 100644
index c06e6c0e..00000000
Binary files a/ComicRack/Output/Languages/it.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/it/AddItemDialog.xml b/ComicRack/Output/Languages/it/AddItemDialog.xml
new file mode 100644
index 00000000..b82e35f5
--- /dev/null
+++ b/ComicRack/Output/Languages/it/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Columns.xml b/ComicRack/Output/Languages/it/Columns.xml
new file mode 100644
index 00000000..4e3e2cf3
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Columns.xml
@@ -0,0 +1,200 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicBook.xml b/ComicRack/Output/Languages/it/ComicBook.xml
new file mode 100644
index 00000000..e4380f65
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicBook.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicBookDialog.xml b/ComicRack/Output/Languages/it/ComicBookDialog.xml
new file mode 100644
index 00000000..fea8d84c
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicBookDialog.xml
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicBrowserControl.xml b/ComicRack/Output/Languages/it/ComicBrowserControl.xml
new file mode 100644
index 00000000..d8bf22f0
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicBrowserControl.xml
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/it/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..d71938f1
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicDataPasteDialog.xml
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/it/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..5b60276f
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicInfo.xml b/ComicRack/Output/Languages/it/ComicInfo.xml
new file mode 100644
index 00000000..8668d49b
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicInfo.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/it/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..044cb623
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/it/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..95363c78
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicListLibraryBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicPagePosition.xml b/ComicRack/Output/Languages/it/ComicPagePosition.xml
new file mode 100644
index 00000000..a5db57d5
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicPageType.xml b/ComicRack/Output/Languages/it/ComicPageType.xml
new file mode 100644
index 00000000..9acee8e6
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicPagesView.xml b/ComicRack/Output/Languages/it/ComicPagesView.xml
new file mode 100644
index 00000000..f5648601
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ComicTextElements.xml b/ComicRack/Output/Languages/it/ComicTextElements.xml
new file mode 100644
index 00000000..5de4e457
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ComicTextElements.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/CommandKeys.xml b/ComicRack/Output/Languages/it/CommandKeys.xml
new file mode 100644
index 00000000..f0c6891c
--- /dev/null
+++ b/ComicRack/Output/Languages/it/CommandKeys.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Common.xml b/ComicRack/Output/Languages/it/Common.xml
new file mode 100644
index 00000000..452cc3f7
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Common.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/CrashDialog.xml b/ComicRack/Output/Languages/it/CrashDialog.xml
new file mode 100644
index 00000000..0edb2c01
--- /dev/null
+++ b/ComicRack/Output/Languages/it/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Default.xml b/ComicRack/Output/Languages/it/Default.xml
new file mode 100644
index 00000000..aceead1d
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Default.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/DeleteItemDialog.xml b/ComicRack/Output/Languages/it/DeleteItemDialog.xml
new file mode 100644
index 00000000..d6d41ec8
--- /dev/null
+++ b/ComicRack/Output/Languages/it/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/DeviceSelectDialog.xml b/ComicRack/Output/Languages/it/DeviceSelectDialog.xml
new file mode 100644
index 00000000..e3f1b749
--- /dev/null
+++ b/ComicRack/Output/Languages/it/DeviceSelectDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/DevicesEditDialog.xml b/ComicRack/Output/Languages/it/DevicesEditDialog.xml
new file mode 100644
index 00000000..b9ddaf91
--- /dev/null
+++ b/ComicRack/Output/Languages/it/DevicesEditDialog.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/DonationDialog.xml b/ComicRack/Output/Languages/it/DonationDialog.xml
new file mode 100644
index 00000000..f85a39ed
--- /dev/null
+++ b/ComicRack/Output/Languages/it/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/EditListDialog.xml b/ComicRack/Output/Languages/it/EditListDialog.xml
new file mode 100644
index 00000000..4cedfb99
--- /dev/null
+++ b/ComicRack/Output/Languages/it/EditListDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ExportComicsDialog.xml b/ComicRack/Output/Languages/it/ExportComicsDialog.xml
new file mode 100644
index 00000000..e7b7e903
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ExportComicsDialog.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ExportErrorsDialog.xml b/ComicRack/Output/Languages/it/ExportErrorsDialog.xml
new file mode 100644
index 00000000..3e751fb9
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/FileFilter.xml b/ComicRack/Output/Languages/it/FileFilter.xml
new file mode 100644
index 00000000..4bef2def
--- /dev/null
+++ b/ComicRack/Output/Languages/it/FileFilter.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/FolderListDialog.xml b/ComicRack/Output/Languages/it/FolderListDialog.xml
new file mode 100644
index 00000000..01e57c24
--- /dev/null
+++ b/ComicRack/Output/Languages/it/FolderListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Groups.xml b/ComicRack/Output/Languages/it/Groups.xml
new file mode 100644
index 00000000..2b52f71b
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Groups.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ImageRotation.xml b/ComicRack/Output/Languages/it/ImageRotation.xml
new file mode 100644
index 00000000..c6c0de97
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ItemView.xml b/ComicRack/Output/Languages/it/ItemView.xml
new file mode 100644
index 00000000..cf401084
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ItemViewMode.xml b/ComicRack/Output/Languages/it/ItemViewMode.xml
new file mode 100644
index 00000000..9cb2f3a5
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Keyboard.xml b/ComicRack/Output/Languages/it/Keyboard.xml
new file mode 100644
index 00000000..5acc7971
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Keyboard.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/it/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..c787243a
--- /dev/null
+++ b/ComicRack/Output/Languages/it/KeyboardShortcutEditor.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/LanguageInfo.xml b/ComicRack/Output/Languages/it/LanguageInfo.xml
new file mode 100644
index 00000000..a171ca55
--- /dev/null
+++ b/ComicRack/Output/Languages/it/LanguageInfo.xml
@@ -0,0 +1,7 @@
+
+
+ Mizio66 / Cristiano 'Elianto' Cozzolino
+ Traduzione Italiana allineata a ComicRack V0.9.0159
+ false
+ it
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ListEditorDialog.xml b/ComicRack/Output/Languages/it/ListEditorDialog.xml
new file mode 100644
index 00000000..7bbfd261
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ListEditorDialog.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ListLayoutDialog.xml b/ComicRack/Output/Languages/it/ListLayoutDialog.xml
new file mode 100644
index 00000000..b5609945
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ListLayoutDialog.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ListSelectorControl.xml b/ComicRack/Output/Languages/it/ListSelectorControl.xml
new file mode 100644
index 00000000..445c3feb
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/MagnifySetupControl.xml b/ComicRack/Output/Languages/it/MagnifySetupControl.xml
new file mode 100644
index 00000000..d10872a3
--- /dev/null
+++ b/ComicRack/Output/Languages/it/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/MainForm.xml b/ComicRack/Output/Languages/it/MainForm.xml
new file mode 100644
index 00000000..d09eeb2c
--- /dev/null
+++ b/ComicRack/Output/Languages/it/MainForm.xml
@@ -0,0 +1,269 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/MainView.xml b/ComicRack/Output/Languages/it/MainView.xml
new file mode 100644
index 00000000..154c0ba4
--- /dev/null
+++ b/ComicRack/Output/Languages/it/MainView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/MatcherEditor.xml b/ComicRack/Output/Languages/it/MatcherEditor.xml
new file mode 100644
index 00000000..825e465f
--- /dev/null
+++ b/ComicRack/Output/Languages/it/MatcherEditor.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Matchers.xml b/ComicRack/Output/Languages/it/Matchers.xml
new file mode 100644
index 00000000..2a3f1899
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Matchers.xml
@@ -0,0 +1,102 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Messages.xml b/ComicRack/Output/Languages/it/Messages.xml
new file mode 100644
index 00000000..08f86624
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Messages.xml
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/it/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..16be1bc4
--- /dev/null
+++ b/ComicRack/Output/Languages/it/MultipleComicBooksDialog.xml
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/NetStatsDialog.xml b/ComicRack/Output/Languages/it/NetStatsDialog.xml
new file mode 100644
index 00000000..36d2ac48
--- /dev/null
+++ b/ComicRack/Output/Languages/it/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/NewsDialog.xml b/ComicRack/Output/Languages/it/NewsDialog.xml
new file mode 100644
index 00000000..8e4512ce
--- /dev/null
+++ b/ComicRack/Output/Languages/it/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/OpenRemoteDialog.xml b/ComicRack/Output/Languages/it/OpenRemoteDialog.xml
new file mode 100644
index 00000000..529f5879
--- /dev/null
+++ b/ComicRack/Output/Languages/it/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/PagesView.xml b/ComicRack/Output/Languages/it/PagesView.xml
new file mode 100644
index 00000000..dd3c3785
--- /dev/null
+++ b/ComicRack/Output/Languages/it/PagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/PasswordDialog.xml b/ComicRack/Output/Languages/it/PasswordDialog.xml
new file mode 100644
index 00000000..05e120ca
--- /dev/null
+++ b/ComicRack/Output/Languages/it/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/PendingTasksDialog.xml b/ComicRack/Output/Languages/it/PendingTasksDialog.xml
new file mode 100644
index 00000000..4236334e
--- /dev/null
+++ b/ComicRack/Output/Languages/it/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/PluginEngine.xml b/ComicRack/Output/Languages/it/PluginEngine.xml
new file mode 100644
index 00000000..735a3ce1
--- /dev/null
+++ b/ComicRack/Output/Languages/it/PluginEngine.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/PreferencesDialog.xml b/ComicRack/Output/Languages/it/PreferencesDialog.xml
new file mode 100644
index 00000000..4f59576d
--- /dev/null
+++ b/ComicRack/Output/Languages/it/PreferencesDialog.xml
@@ -0,0 +1,149 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ProgressDialog.xml b/ComicRack/Output/Languages/it/ProgressDialog.xml
new file mode 100644
index 00000000..0fe6f185
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/QuestionDialog.xml b/ComicRack/Output/Languages/it/QuestionDialog.xml
new file mode 100644
index 00000000..9b8fd8aa
--- /dev/null
+++ b/ComicRack/Output/Languages/it/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/QuickOpenView.xml b/ComicRack/Output/Languages/it/QuickOpenView.xml
new file mode 100644
index 00000000..0d63d89b
--- /dev/null
+++ b/ComicRack/Output/Languages/it/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ReaderForm.xml b/ComicRack/Output/Languages/it/ReaderForm.xml
new file mode 100644
index 00000000..368fb871
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/it/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..449a6afa
--- /dev/null
+++ b/ComicRack/Output/Languages/it/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Script.Autonumber.xml b/ComicRack/Output/Languages/it/Script.Autonumber.xml
new file mode 100644
index 00000000..c5eabb79
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Script.CommitProposed.xml b/ComicRack/Output/Languages/it/Script.CommitProposed.xml
new file mode 100644
index 00000000..64498483
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Script.NewComics.xml b/ComicRack/Output/Languages/it/Script.NewComics.xml
new file mode 100644
index 00000000..b949974a
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/it/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..37854516
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Script.SaveCSVList.xml b/ComicRack/Output/Languages/it/Script.SaveCSVList.xml
new file mode 100644
index 00000000..f162a1fd
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/it/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..478cc760
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/SearchBrowser.xml b/ComicRack/Output/Languages/it/SearchBrowser.xml
new file mode 100644
index 00000000..ff3cbb44
--- /dev/null
+++ b/ComicRack/Output/Languages/it/SearchBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/SearchMenu.xml b/ComicRack/Output/Languages/it/SearchMenu.xml
new file mode 100644
index 00000000..4d11caf4
--- /dev/null
+++ b/ComicRack/Output/Languages/it/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Settings.xml b/ComicRack/Output/Languages/it/Settings.xml
new file mode 100644
index 00000000..78bec28c
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Settings.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ShowErrorsDialog.xml b/ComicRack/Output/Languages/it/ShowErrorsDialog.xml
new file mode 100644
index 00000000..7cee8d33
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ShowErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/SmallComicPreview.xml b/ComicRack/Output/Languages/it/SmallComicPreview.xml
new file mode 100644
index 00000000..ddb0fc47
--- /dev/null
+++ b/ComicRack/Output/Languages/it/SmallComicPreview.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/SmartListDialog.xml b/ComicRack/Output/Languages/it/SmartListDialog.xml
new file mode 100644
index 00000000..863ccd80
--- /dev/null
+++ b/ComicRack/Output/Languages/it/SmartListDialog.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/TasksDialog.xml b/ComicRack/Output/Languages/it/TasksDialog.xml
new file mode 100644
index 00000000..695e9b11
--- /dev/null
+++ b/ComicRack/Output/Languages/it/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/TextBoxContextMenu.xml b/ComicRack/Output/Languages/it/TextBoxContextMenu.xml
new file mode 100644
index 00000000..1f76663e
--- /dev/null
+++ b/ComicRack/Output/Languages/it/TextBoxContextMenu.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/Textures.xml b/ComicRack/Output/Languages/it/Textures.xml
new file mode 100644
index 00000000..19d02f42
--- /dev/null
+++ b/ComicRack/Output/Languages/it/Textures.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ValueEditorDialog.xml b/ComicRack/Output/Languages/it/ValueEditorDialog.xml
new file mode 100644
index 00000000..c2b00056
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ValueEditorDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/it/ZoomDialog.xml b/ComicRack/Output/Languages/it/ZoomDialog.xml
new file mode 100644
index 00000000..1961862c
--- /dev/null
+++ b/ComicRack/Output/Languages/it/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja.zip b/ComicRack/Output/Languages/ja.zip
deleted file mode 100644
index d120f427..00000000
Binary files a/ComicRack/Output/Languages/ja.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/ja/AddItemDialog.xml b/ComicRack/Output/Languages/ja/AddItemDialog.xml
new file mode 100644
index 00000000..ae56a1e0
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Columns.xml b/ComicRack/Output/Languages/ja/Columns.xml
new file mode 100644
index 00000000..d57c6cfa
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Columns.xml
@@ -0,0 +1,179 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ComicBook.xml b/ComicRack/Output/Languages/ja/ComicBook.xml
new file mode 100644
index 00000000..11a65f6e
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ComicBook.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ComicBookDialog.xml b/ComicRack/Output/Languages/ja/ComicBookDialog.xml
new file mode 100644
index 00000000..e167e06d
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ComicBookDialog.xml
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ComicBrowserControl.xml b/ComicRack/Output/Languages/ja/ComicBrowserControl.xml
new file mode 100644
index 00000000..a138ba5b
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ComicBrowserControl.xml
@@ -0,0 +1,101 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/ja/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..fb6469a2
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ComicDataPasteDialog.xml
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/ja/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..22ec82f5
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/ja/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..5b060507
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/ja/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..b766cdc2
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ComicListLibraryBrowser.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ComicPagePosition.xml b/ComicRack/Output/Languages/ja/ComicPagePosition.xml
new file mode 100644
index 00000000..730020ed
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ComicPageType.xml b/ComicRack/Output/Languages/ja/ComicPageType.xml
new file mode 100644
index 00000000..0d287e81
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ComicPagesView.xml b/ComicRack/Output/Languages/ja/ComicPagesView.xml
new file mode 100644
index 00000000..55a442fb
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/CommandKeys.xml b/ComicRack/Output/Languages/ja/CommandKeys.xml
new file mode 100644
index 00000000..369e2be6
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/CommandKeys.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/CrashDialog.xml b/ComicRack/Output/Languages/ja/CrashDialog.xml
new file mode 100644
index 00000000..3d3bb6ac
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Default.xml b/ComicRack/Output/Languages/ja/Default.xml
new file mode 100644
index 00000000..876b8cf1
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Default.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/DeleteItemDialog.xml b/ComicRack/Output/Languages/ja/DeleteItemDialog.xml
new file mode 100644
index 00000000..b1f1e063
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/DonationDialog.xml b/ComicRack/Output/Languages/ja/DonationDialog.xml
new file mode 100644
index 00000000..4fdd0f41
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ExportComicsDialog.xml b/ComicRack/Output/Languages/ja/ExportComicsDialog.xml
new file mode 100644
index 00000000..28d42e8a
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ExportComicsDialog.xml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ExportErrorsDialog.xml b/ComicRack/Output/Languages/ja/ExportErrorsDialog.xml
new file mode 100644
index 00000000..46f7ae56
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/FileFilter.xml b/ComicRack/Output/Languages/ja/FileFilter.xml
new file mode 100644
index 00000000..cef31856
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/FileFilter.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/FolderListDialog.xml b/ComicRack/Output/Languages/ja/FolderListDialog.xml
new file mode 100644
index 00000000..efaca171
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/FolderListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Groups.xml b/ComicRack/Output/Languages/ja/Groups.xml
new file mode 100644
index 00000000..75e48076
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Groups.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ImageRotation.xml b/ComicRack/Output/Languages/ja/ImageRotation.xml
new file mode 100644
index 00000000..4b8aee3d
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ItemView.xml b/ComicRack/Output/Languages/ja/ItemView.xml
new file mode 100644
index 00000000..f7debd86
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ItemViewMode.xml b/ComicRack/Output/Languages/ja/ItemViewMode.xml
new file mode 100644
index 00000000..c0cb93da
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Keyboard.xml b/ComicRack/Output/Languages/ja/Keyboard.xml
new file mode 100644
index 00000000..3854c935
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Keyboard.xml
@@ -0,0 +1,71 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/ja/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..7f346436
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/KeyboardShortcutEditor.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/LanguageInfo.xml b/ComicRack/Output/Languages/ja/LanguageInfo.xml
new file mode 100644
index 00000000..8c9f4b8d
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/LanguageInfo.xml
@@ -0,0 +1,6 @@
+
+
+ Asabukuro
+ 0.9.136 (take 1)
+ ja
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ListEditorDialog.xml b/ComicRack/Output/Languages/ja/ListEditorDialog.xml
new file mode 100644
index 00000000..45405215
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ListEditorDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ListLayoutDialog.xml b/ComicRack/Output/Languages/ja/ListLayoutDialog.xml
new file mode 100644
index 00000000..7267aff2
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ListLayoutDialog.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ListSelectorControl.xml b/ComicRack/Output/Languages/ja/ListSelectorControl.xml
new file mode 100644
index 00000000..c4a6cf8c
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/MagnifySetupControl.xml b/ComicRack/Output/Languages/ja/MagnifySetupControl.xml
new file mode 100644
index 00000000..5fb2413f
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/MainForm.xml b/ComicRack/Output/Languages/ja/MainForm.xml
new file mode 100644
index 00000000..63250c74
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/MainForm.xml
@@ -0,0 +1,260 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/MainView.xml b/ComicRack/Output/Languages/ja/MainView.xml
new file mode 100644
index 00000000..d4036f7e
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/MainView.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Matchers.xml b/ComicRack/Output/Languages/ja/Matchers.xml
new file mode 100644
index 00000000..9cc7b8e0
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Matchers.xml
@@ -0,0 +1,86 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Messages.xml b/ComicRack/Output/Languages/ja/Messages.xml
new file mode 100644
index 00000000..94a67cdf
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Messages.xml
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/ja/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..06f4421a
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/MultipleComicBooksDialog.xml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/NetStatsDialog.xml b/ComicRack/Output/Languages/ja/NetStatsDialog.xml
new file mode 100644
index 00000000..d3d6c85b
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/NewsDialog.xml b/ComicRack/Output/Languages/ja/NewsDialog.xml
new file mode 100644
index 00000000..74be6087
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/OpenRemoteDialog.xml b/ComicRack/Output/Languages/ja/OpenRemoteDialog.xml
new file mode 100644
index 00000000..36ba93e5
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/PagesView.xml b/ComicRack/Output/Languages/ja/PagesView.xml
new file mode 100644
index 00000000..ceaab37e
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/PagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/PasswordDialog.xml b/ComicRack/Output/Languages/ja/PasswordDialog.xml
new file mode 100644
index 00000000..7b9145cc
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/PendingTasksDialog.xml b/ComicRack/Output/Languages/ja/PendingTasksDialog.xml
new file mode 100644
index 00000000..6da9308c
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/PluginEngine.xml b/ComicRack/Output/Languages/ja/PluginEngine.xml
new file mode 100644
index 00000000..d676dbb6
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/PluginEngine.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/PreferencesDialog.xml b/ComicRack/Output/Languages/ja/PreferencesDialog.xml
new file mode 100644
index 00000000..72680c43
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/PreferencesDialog.xml
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ProgressDialog.xml b/ComicRack/Output/Languages/ja/ProgressDialog.xml
new file mode 100644
index 00000000..51e3dd5d
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/QuestionDialog.xml b/ComicRack/Output/Languages/ja/QuestionDialog.xml
new file mode 100644
index 00000000..2c1e5d38
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/QuickOpenView.xml b/ComicRack/Output/Languages/ja/QuickOpenView.xml
new file mode 100644
index 00000000..c8b596f9
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ReaderForm.xml b/ComicRack/Output/Languages/ja/ReaderForm.xml
new file mode 100644
index 00000000..e0269b7a
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/ja/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..2410cd7d
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Script.Autonumber.xml b/ComicRack/Output/Languages/ja/Script.Autonumber.xml
new file mode 100644
index 00000000..de1a1b8e
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Script.Autonumber.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Script.CommitProposed.xml b/ComicRack/Output/Languages/ja/Script.CommitProposed.xml
new file mode 100644
index 00000000..4e6a954b
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Script.NewComics.xml b/ComicRack/Output/Languages/ja/Script.NewComics.xml
new file mode 100644
index 00000000..4c80c1ab
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/ja/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..c2a3bd56
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Script.SaveCSVList.xml b/ComicRack/Output/Languages/ja/Script.SaveCSVList.xml
new file mode 100644
index 00000000..6b62f571
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/ja/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..91e981d3
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Script.SearchAndReplace.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/SearchBrowser.xml b/ComicRack/Output/Languages/ja/SearchBrowser.xml
new file mode 100644
index 00000000..e1b8c288
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/SearchBrowser.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/SearchMenu.xml b/ComicRack/Output/Languages/ja/SearchMenu.xml
new file mode 100644
index 00000000..695672de
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Settings.xml b/ComicRack/Output/Languages/ja/Settings.xml
new file mode 100644
index 00000000..17741495
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Settings.xml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/SmallComicPreview.xml b/ComicRack/Output/Languages/ja/SmallComicPreview.xml
new file mode 100644
index 00000000..63fca6de
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/SmallComicPreview.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/SmartListDialog.xml b/ComicRack/Output/Languages/ja/SmartListDialog.xml
new file mode 100644
index 00000000..a35c26d4
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/SmartListDialog.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/TasksDialog.xml b/ComicRack/Output/Languages/ja/TasksDialog.xml
new file mode 100644
index 00000000..6ec22fe4
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/TextBoxContextMenu.xml b/ComicRack/Output/Languages/ja/TextBoxContextMenu.xml
new file mode 100644
index 00000000..32104cba
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/TextBoxContextMenu.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/Textures.xml b/ComicRack/Output/Languages/ja/Textures.xml
new file mode 100644
index 00000000..22e12614
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/Textures.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ja/ZoomDialog.xml b/ComicRack/Output/Languages/ja/ZoomDialog.xml
new file mode 100644
index 00000000..5cb7132d
--- /dev/null
+++ b/ComicRack/Output/Languages/ja/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE.zip b/ComicRack/Output/Languages/nl-BE.zip
deleted file mode 100644
index 12a8bee7..00000000
Binary files a/ComicRack/Output/Languages/nl-BE.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/nl-BE/AddItemDialog.xml b/ComicRack/Output/Languages/nl-BE/AddItemDialog.xml
new file mode 100644
index 00000000..89ae4b58
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Columns.xml b/ComicRack/Output/Languages/nl-BE/Columns.xml
new file mode 100644
index 00000000..0b992378
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Columns.xml
@@ -0,0 +1,207 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicBook.xml b/ComicRack/Output/Languages/nl-BE/ComicBook.xml
new file mode 100644
index 00000000..bedd8664
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicBook.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicBookDialog.xml b/ComicRack/Output/Languages/nl-BE/ComicBookDialog.xml
new file mode 100644
index 00000000..eaadfb56
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicBookDialog.xml
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicBrowserControl.xml b/ComicRack/Output/Languages/nl-BE/ComicBrowserControl.xml
new file mode 100644
index 00000000..d2b7be66
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicBrowserControl.xml
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/nl-BE/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..93d724ee
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicDataPasteDialog.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/nl-BE/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..1e0b7e9c
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicInfo.xml b/ComicRack/Output/Languages/nl-BE/ComicInfo.xml
new file mode 100644
index 00000000..6a6ec722
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicInfo.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/nl-BE/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..413c8fbd
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/nl-BE/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..069fff59
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicListLibraryBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicPagePosition.xml b/ComicRack/Output/Languages/nl-BE/ComicPagePosition.xml
new file mode 100644
index 00000000..8d4e57e7
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicPageType.xml b/ComicRack/Output/Languages/nl-BE/ComicPageType.xml
new file mode 100644
index 00000000..73f5fe23
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicPagesView.xml b/ComicRack/Output/Languages/nl-BE/ComicPagesView.xml
new file mode 100644
index 00000000..ccfdcc43
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ComicTextElements.xml b/ComicRack/Output/Languages/nl-BE/ComicTextElements.xml
new file mode 100644
index 00000000..487730eb
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ComicTextElements.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/CommandKeys.xml b/ComicRack/Output/Languages/nl-BE/CommandKeys.xml
new file mode 100644
index 00000000..3badb5d5
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/CommandKeys.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Common.xml b/ComicRack/Output/Languages/nl-BE/Common.xml
new file mode 100644
index 00000000..942791be
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Common.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/CrashDialog.xml b/ComicRack/Output/Languages/nl-BE/CrashDialog.xml
new file mode 100644
index 00000000..eb4a9053
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Default.xml b/ComicRack/Output/Languages/nl-BE/Default.xml
new file mode 100644
index 00000000..64198368
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Default.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/DeleteItemDialog.xml b/ComicRack/Output/Languages/nl-BE/DeleteItemDialog.xml
new file mode 100644
index 00000000..884d2b50
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/DeviceSelectDialog.xml b/ComicRack/Output/Languages/nl-BE/DeviceSelectDialog.xml
new file mode 100644
index 00000000..b76c34aa
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/DeviceSelectDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/DevicesEditDialog.xml b/ComicRack/Output/Languages/nl-BE/DevicesEditDialog.xml
new file mode 100644
index 00000000..8daaa826
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/DevicesEditDialog.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/DonationDialog.xml b/ComicRack/Output/Languages/nl-BE/DonationDialog.xml
new file mode 100644
index 00000000..79a82bbf
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/EditListDialog.xml b/ComicRack/Output/Languages/nl-BE/EditListDialog.xml
new file mode 100644
index 00000000..bb2354c4
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/EditListDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ExportComicsDialog.xml b/ComicRack/Output/Languages/nl-BE/ExportComicsDialog.xml
new file mode 100644
index 00000000..27749183
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ExportComicsDialog.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ExportErrorsDialog.xml b/ComicRack/Output/Languages/nl-BE/ExportErrorsDialog.xml
new file mode 100644
index 00000000..5687f120
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/FileFilter.xml b/ComicRack/Output/Languages/nl-BE/FileFilter.xml
new file mode 100644
index 00000000..241b8d9d
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/FileFilter.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/FolderListDialog.xml b/ComicRack/Output/Languages/nl-BE/FolderListDialog.xml
new file mode 100644
index 00000000..9b9a0040
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/FolderListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Groups.xml b/ComicRack/Output/Languages/nl-BE/Groups.xml
new file mode 100644
index 00000000..89515416
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Groups.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ImageRotation.xml b/ComicRack/Output/Languages/nl-BE/ImageRotation.xml
new file mode 100644
index 00000000..153882ed
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ItemView.xml b/ComicRack/Output/Languages/nl-BE/ItemView.xml
new file mode 100644
index 00000000..1e14b93f
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ItemViewMode.xml b/ComicRack/Output/Languages/nl-BE/ItemViewMode.xml
new file mode 100644
index 00000000..3f683e12
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Keyboard.xml b/ComicRack/Output/Languages/nl-BE/Keyboard.xml
new file mode 100644
index 00000000..056c63ba
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Keyboard.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/nl-BE/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..e4e65ff9
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/KeyboardShortcutEditor.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/LanguageInfo.xml b/ComicRack/Output/Languages/nl-BE/LanguageInfo.xml
new file mode 100644
index 00000000..d412f899
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/LanguageInfo.xml
@@ -0,0 +1,6 @@
+
+
+ Ludwig
+ Eerste Vlaamse vertaling :o)
+ nl-BE
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ListEditorDialog.xml b/ComicRack/Output/Languages/nl-BE/ListEditorDialog.xml
new file mode 100644
index 00000000..328304fb
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ListEditorDialog.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ListLayoutDialog.xml b/ComicRack/Output/Languages/nl-BE/ListLayoutDialog.xml
new file mode 100644
index 00000000..3f64a96c
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ListLayoutDialog.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ListSelectorControl.xml b/ComicRack/Output/Languages/nl-BE/ListSelectorControl.xml
new file mode 100644
index 00000000..f6ee343f
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/MagnifySetupControl.xml b/ComicRack/Output/Languages/nl-BE/MagnifySetupControl.xml
new file mode 100644
index 00000000..469e9a29
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/MainForm.xml b/ComicRack/Output/Languages/nl-BE/MainForm.xml
new file mode 100644
index 00000000..1ed60c25
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/MainForm.xml
@@ -0,0 +1,269 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/MainView.xml b/ComicRack/Output/Languages/nl-BE/MainView.xml
new file mode 100644
index 00000000..bd920c69
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/MainView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/MatcherEditor.xml b/ComicRack/Output/Languages/nl-BE/MatcherEditor.xml
new file mode 100644
index 00000000..20a5cf63
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/MatcherEditor.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Matchers.xml b/ComicRack/Output/Languages/nl-BE/Matchers.xml
new file mode 100644
index 00000000..8fa2be88
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Matchers.xml
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Messages.xml b/ComicRack/Output/Languages/nl-BE/Messages.xml
new file mode 100644
index 00000000..ee98e370
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Messages.xml
@@ -0,0 +1,147 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/nl-BE/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..0b7877db
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/MultipleComicBooksDialog.xml
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/NetStatsDialog.xml b/ComicRack/Output/Languages/nl-BE/NetStatsDialog.xml
new file mode 100644
index 00000000..6d4003f1
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/NewsDialog.xml b/ComicRack/Output/Languages/nl-BE/NewsDialog.xml
new file mode 100644
index 00000000..317abf7a
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/OpenRemoteDialog.xml b/ComicRack/Output/Languages/nl-BE/OpenRemoteDialog.xml
new file mode 100644
index 00000000..355662d1
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/PagesView.xml b/ComicRack/Output/Languages/nl-BE/PagesView.xml
new file mode 100644
index 00000000..677ee431
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/PagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/PasswordDialog.xml b/ComicRack/Output/Languages/nl-BE/PasswordDialog.xml
new file mode 100644
index 00000000..1ad14136
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/PendingTasksDialog.xml b/ComicRack/Output/Languages/nl-BE/PendingTasksDialog.xml
new file mode 100644
index 00000000..63d4c03c
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/PluginEngine.xml b/ComicRack/Output/Languages/nl-BE/PluginEngine.xml
new file mode 100644
index 00000000..25b30d4e
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/PluginEngine.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/PreferencesDialog.xml b/ComicRack/Output/Languages/nl-BE/PreferencesDialog.xml
new file mode 100644
index 00000000..e95bacb3
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/PreferencesDialog.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ProgressDialog.xml b/ComicRack/Output/Languages/nl-BE/ProgressDialog.xml
new file mode 100644
index 00000000..faeca146
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/QuestionDialog.xml b/ComicRack/Output/Languages/nl-BE/QuestionDialog.xml
new file mode 100644
index 00000000..db71c2c8
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/QuickOpenView.xml b/ComicRack/Output/Languages/nl-BE/QuickOpenView.xml
new file mode 100644
index 00000000..6bd0e286
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ReaderForm.xml b/ComicRack/Output/Languages/nl-BE/ReaderForm.xml
new file mode 100644
index 00000000..eac95fd4
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/nl-BE/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..28f7c909
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Script.Autonumber.xml b/ComicRack/Output/Languages/nl-BE/Script.Autonumber.xml
new file mode 100644
index 00000000..badf318d
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Script.CommitProposed.xml b/ComicRack/Output/Languages/nl-BE/Script.CommitProposed.xml
new file mode 100644
index 00000000..67d52bfe
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Script.NewComics.xml b/ComicRack/Output/Languages/nl-BE/Script.NewComics.xml
new file mode 100644
index 00000000..ccf5023f
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/nl-BE/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..fa18892b
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Script.SaveCSVList.xml b/ComicRack/Output/Languages/nl-BE/Script.SaveCSVList.xml
new file mode 100644
index 00000000..8b1183bf
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/nl-BE/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..f1e56a9d
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/SearchBrowser.xml b/ComicRack/Output/Languages/nl-BE/SearchBrowser.xml
new file mode 100644
index 00000000..059ff9fa
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/SearchBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/SearchMenu.xml b/ComicRack/Output/Languages/nl-BE/SearchMenu.xml
new file mode 100644
index 00000000..615d9c19
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Settings.xml b/ComicRack/Output/Languages/nl-BE/Settings.xml
new file mode 100644
index 00000000..7e4bda3a
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Settings.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ShowErrorsDialog.xml b/ComicRack/Output/Languages/nl-BE/ShowErrorsDialog.xml
new file mode 100644
index 00000000..3459fc9e
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ShowErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/SmallComicPreview.xml b/ComicRack/Output/Languages/nl-BE/SmallComicPreview.xml
new file mode 100644
index 00000000..ac7e2367
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/SmallComicPreview.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/SmartListDialog.xml b/ComicRack/Output/Languages/nl-BE/SmartListDialog.xml
new file mode 100644
index 00000000..79319991
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/SmartListDialog.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/TasksDialog.xml b/ComicRack/Output/Languages/nl-BE/TasksDialog.xml
new file mode 100644
index 00000000..a53c66ab
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/TextBoxContextMenu.xml b/ComicRack/Output/Languages/nl-BE/TextBoxContextMenu.xml
new file mode 100644
index 00000000..f44e2b94
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/TextBoxContextMenu.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/Textures.xml b/ComicRack/Output/Languages/nl-BE/Textures.xml
new file mode 100644
index 00000000..de6ec0aa
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/Textures.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ValueEditorDialog.xml b/ComicRack/Output/Languages/nl-BE/ValueEditorDialog.xml
new file mode 100644
index 00000000..9f7be001
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ValueEditorDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/nl-BE/ZoomDialog.xml b/ComicRack/Output/Languages/nl-BE/ZoomDialog.xml
new file mode 100644
index 00000000..a0a86328
--- /dev/null
+++ b/ComicRack/Output/Languages/nl-BE/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl.zip b/ComicRack/Output/Languages/pl.zip
deleted file mode 100644
index 5750e317..00000000
Binary files a/ComicRack/Output/Languages/pl.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/pl/AddItemDialog.xml b/ComicRack/Output/Languages/pl/AddItemDialog.xml
new file mode 100644
index 00000000..3f155672
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Columns.xml b/ComicRack/Output/Languages/pl/Columns.xml
new file mode 100644
index 00000000..a108770b
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Columns.xml
@@ -0,0 +1,207 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicBook.xml b/ComicRack/Output/Languages/pl/ComicBook.xml
new file mode 100644
index 00000000..46e862f0
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicBook.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicBookDialog.xml b/ComicRack/Output/Languages/pl/ComicBookDialog.xml
new file mode 100644
index 00000000..7621d462
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicBookDialog.xml
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicBrowserControl.xml b/ComicRack/Output/Languages/pl/ComicBrowserControl.xml
new file mode 100644
index 00000000..dfc44475
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicBrowserControl.xml
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/pl/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..19bad05b
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicDataPasteDialog.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/pl/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..51e096de
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicInfo.xml b/ComicRack/Output/Languages/pl/ComicInfo.xml
new file mode 100644
index 00000000..6546875a
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicInfo.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/pl/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..c126d61a
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/pl/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..fcbc8845
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicListLibraryBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicPagePosition.xml b/ComicRack/Output/Languages/pl/ComicPagePosition.xml
new file mode 100644
index 00000000..fdc304f9
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicPageType.xml b/ComicRack/Output/Languages/pl/ComicPageType.xml
new file mode 100644
index 00000000..8f9b55b7
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicPagesView.xml b/ComicRack/Output/Languages/pl/ComicPagesView.xml
new file mode 100644
index 00000000..4f94278a
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ComicTextElements.xml b/ComicRack/Output/Languages/pl/ComicTextElements.xml
new file mode 100644
index 00000000..6b6900dc
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ComicTextElements.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/CommandKeys.xml b/ComicRack/Output/Languages/pl/CommandKeys.xml
new file mode 100644
index 00000000..3819e942
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/CommandKeys.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Common.xml b/ComicRack/Output/Languages/pl/Common.xml
new file mode 100644
index 00000000..4a0a0cba
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Common.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/CrashDialog.xml b/ComicRack/Output/Languages/pl/CrashDialog.xml
new file mode 100644
index 00000000..04248684
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Default.xml b/ComicRack/Output/Languages/pl/Default.xml
new file mode 100644
index 00000000..32a1cb6d
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Default.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/DeleteItemDialog.xml b/ComicRack/Output/Languages/pl/DeleteItemDialog.xml
new file mode 100644
index 00000000..b6be52b1
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/DeviceSelectDialog.xml b/ComicRack/Output/Languages/pl/DeviceSelectDialog.xml
new file mode 100644
index 00000000..d084d002
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/DeviceSelectDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/DevicesEditDialog.xml b/ComicRack/Output/Languages/pl/DevicesEditDialog.xml
new file mode 100644
index 00000000..3bb4cb6c
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/DevicesEditDialog.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/DonationDialog.xml b/ComicRack/Output/Languages/pl/DonationDialog.xml
new file mode 100644
index 00000000..42e696f7
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/EditListDialog.xml b/ComicRack/Output/Languages/pl/EditListDialog.xml
new file mode 100644
index 00000000..f6ea8b86
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/EditListDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ExportComicsDialog.xml b/ComicRack/Output/Languages/pl/ExportComicsDialog.xml
new file mode 100644
index 00000000..b644e425
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ExportComicsDialog.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ExportErrorsDialog.xml b/ComicRack/Output/Languages/pl/ExportErrorsDialog.xml
new file mode 100644
index 00000000..08352fbe
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/FileFilter.xml b/ComicRack/Output/Languages/pl/FileFilter.xml
new file mode 100644
index 00000000..e673c758
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/FileFilter.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/FolderListDialog.xml b/ComicRack/Output/Languages/pl/FolderListDialog.xml
new file mode 100644
index 00000000..5836fafd
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/FolderListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Groups.xml b/ComicRack/Output/Languages/pl/Groups.xml
new file mode 100644
index 00000000..95e76d68
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Groups.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ImageRotation.xml b/ComicRack/Output/Languages/pl/ImageRotation.xml
new file mode 100644
index 00000000..3720441b
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ItemView.xml b/ComicRack/Output/Languages/pl/ItemView.xml
new file mode 100644
index 00000000..d01fae7f
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ItemViewMode.xml b/ComicRack/Output/Languages/pl/ItemViewMode.xml
new file mode 100644
index 00000000..04aeba76
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Keyboard.xml b/ComicRack/Output/Languages/pl/Keyboard.xml
new file mode 100644
index 00000000..8bcf1d81
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Keyboard.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/pl/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..779bccad
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/KeyboardShortcutEditor.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/LanguageInfo.xml b/ComicRack/Output/Languages/pl/LanguageInfo.xml
new file mode 100644
index 00000000..1319a616
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/LanguageInfo.xml
@@ -0,0 +1,7 @@
+
+
+ marwinek
+ Tłumaczenie do wersji 0.9.165
+ false
+ pl
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ListEditorDialog.xml b/ComicRack/Output/Languages/pl/ListEditorDialog.xml
new file mode 100644
index 00000000..18034fc6
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ListEditorDialog.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ListLayoutDialog.xml b/ComicRack/Output/Languages/pl/ListLayoutDialog.xml
new file mode 100644
index 00000000..36039df8
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ListLayoutDialog.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ListSelectorControl.xml b/ComicRack/Output/Languages/pl/ListSelectorControl.xml
new file mode 100644
index 00000000..2c7a7b6b
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/MagnifySetupControl.xml b/ComicRack/Output/Languages/pl/MagnifySetupControl.xml
new file mode 100644
index 00000000..fe9b57db
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/MainForm.xml b/ComicRack/Output/Languages/pl/MainForm.xml
new file mode 100644
index 00000000..781a63cc
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/MainForm.xml
@@ -0,0 +1,269 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/MainView.xml b/ComicRack/Output/Languages/pl/MainView.xml
new file mode 100644
index 00000000..002c9f72
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/MainView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/MatcherEditor.xml b/ComicRack/Output/Languages/pl/MatcherEditor.xml
new file mode 100644
index 00000000..bfaaf080
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/MatcherEditor.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Matchers.xml b/ComicRack/Output/Languages/pl/Matchers.xml
new file mode 100644
index 00000000..90588e9f
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Matchers.xml
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Messages.xml b/ComicRack/Output/Languages/pl/Messages.xml
new file mode 100644
index 00000000..d055c3d8
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Messages.xml
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/pl/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..51c406b7
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/MultipleComicBooksDialog.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/NetStatsDialog.xml b/ComicRack/Output/Languages/pl/NetStatsDialog.xml
new file mode 100644
index 00000000..dca67f0a
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/NewsDialog.xml b/ComicRack/Output/Languages/pl/NewsDialog.xml
new file mode 100644
index 00000000..45d4e7f2
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/OpenRemoteDialog.xml b/ComicRack/Output/Languages/pl/OpenRemoteDialog.xml
new file mode 100644
index 00000000..0ed493a9
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/PagesView.xml b/ComicRack/Output/Languages/pl/PagesView.xml
new file mode 100644
index 00000000..2cf2a7b4
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/PagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/PasswordDialog.xml b/ComicRack/Output/Languages/pl/PasswordDialog.xml
new file mode 100644
index 00000000..d0179e51
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/PendingTasksDialog.xml b/ComicRack/Output/Languages/pl/PendingTasksDialog.xml
new file mode 100644
index 00000000..4f0a97fb
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/PluginEngine.xml b/ComicRack/Output/Languages/pl/PluginEngine.xml
new file mode 100644
index 00000000..eb6fb578
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/PluginEngine.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/PreferencesDialog.xml b/ComicRack/Output/Languages/pl/PreferencesDialog.xml
new file mode 100644
index 00000000..f9644698
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/PreferencesDialog.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ProgressDialog.xml b/ComicRack/Output/Languages/pl/ProgressDialog.xml
new file mode 100644
index 00000000..4790e7a0
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/QuestionDialog.xml b/ComicRack/Output/Languages/pl/QuestionDialog.xml
new file mode 100644
index 00000000..fc161612
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/QuickOpenView.xml b/ComicRack/Output/Languages/pl/QuickOpenView.xml
new file mode 100644
index 00000000..d910b3a3
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ReaderForm.xml b/ComicRack/Output/Languages/pl/ReaderForm.xml
new file mode 100644
index 00000000..2961294b
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/pl/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..d4eb6d7c
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Script.Autonumber.xml b/ComicRack/Output/Languages/pl/Script.Autonumber.xml
new file mode 100644
index 00000000..e3884853
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Script.CommitProposed.xml b/ComicRack/Output/Languages/pl/Script.CommitProposed.xml
new file mode 100644
index 00000000..54faeaeb
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Script.NewComics.xml b/ComicRack/Output/Languages/pl/Script.NewComics.xml
new file mode 100644
index 00000000..f13941c2
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/pl/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..6eecd354
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Script.SaveCSVList.xml b/ComicRack/Output/Languages/pl/Script.SaveCSVList.xml
new file mode 100644
index 00000000..c5ad26b2
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/pl/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..5b7f5709
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/SearchBrowser.xml b/ComicRack/Output/Languages/pl/SearchBrowser.xml
new file mode 100644
index 00000000..30ca43db
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/SearchBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/SearchMenu.xml b/ComicRack/Output/Languages/pl/SearchMenu.xml
new file mode 100644
index 00000000..b40f58c2
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Settings.xml b/ComicRack/Output/Languages/pl/Settings.xml
new file mode 100644
index 00000000..8295a425
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Settings.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ShowErrorsDialog.xml b/ComicRack/Output/Languages/pl/ShowErrorsDialog.xml
new file mode 100644
index 00000000..007d6a65
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ShowErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/SmallComicPreview.xml b/ComicRack/Output/Languages/pl/SmallComicPreview.xml
new file mode 100644
index 00000000..11d214d6
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/SmallComicPreview.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/SmartListDialog.xml b/ComicRack/Output/Languages/pl/SmartListDialog.xml
new file mode 100644
index 00000000..8e54ed69
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/SmartListDialog.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/TasksDialog.xml b/ComicRack/Output/Languages/pl/TasksDialog.xml
new file mode 100644
index 00000000..d342529d
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/TextBoxContextMenu.xml b/ComicRack/Output/Languages/pl/TextBoxContextMenu.xml
new file mode 100644
index 00000000..4ef07b0e
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/TextBoxContextMenu.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/Textures.xml b/ComicRack/Output/Languages/pl/Textures.xml
new file mode 100644
index 00000000..07b4c2e1
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/Textures.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ValueEditorDialog.xml b/ComicRack/Output/Languages/pl/ValueEditorDialog.xml
new file mode 100644
index 00000000..9f6f3a4e
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ValueEditorDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pl/ZoomDialog.xml b/ComicRack/Output/Languages/pl/ZoomDialog.xml
new file mode 100644
index 00000000..aba908c8
--- /dev/null
+++ b/ComicRack/Output/Languages/pl/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR.zip b/ComicRack/Output/Languages/pt-BR.zip
deleted file mode 100644
index 470706a9..00000000
Binary files a/ComicRack/Output/Languages/pt-BR.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/pt-BR/AddItemDialog.xml b/ComicRack/Output/Languages/pt-BR/AddItemDialog.xml
new file mode 100644
index 00000000..40a5e8ed
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Columns.xml b/ComicRack/Output/Languages/pt-BR/Columns.xml
new file mode 100644
index 00000000..ea503808
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Columns.xml
@@ -0,0 +1,207 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicBook.xml b/ComicRack/Output/Languages/pt-BR/ComicBook.xml
new file mode 100644
index 00000000..69f54049
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicBook.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicBookDialog.xml b/ComicRack/Output/Languages/pt-BR/ComicBookDialog.xml
new file mode 100644
index 00000000..81a2bf2c
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicBookDialog.xml
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicBrowserControl.xml b/ComicRack/Output/Languages/pt-BR/ComicBrowserControl.xml
new file mode 100644
index 00000000..b7cabf2f
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicBrowserControl.xml
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/pt-BR/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..a3c1f1ed
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicDataPasteDialog.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/pt-BR/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..02ad5333
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicInfo.xml b/ComicRack/Output/Languages/pt-BR/ComicInfo.xml
new file mode 100644
index 00000000..eea3ac97
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicInfo.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/pt-BR/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..8f7fa27f
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/pt-BR/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..c760e93b
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicListLibraryBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicPagePosition.xml b/ComicRack/Output/Languages/pt-BR/ComicPagePosition.xml
new file mode 100644
index 00000000..de21ffb7
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicPageType.xml b/ComicRack/Output/Languages/pt-BR/ComicPageType.xml
new file mode 100644
index 00000000..b34f8fcd
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicPagesView.xml b/ComicRack/Output/Languages/pt-BR/ComicPagesView.xml
new file mode 100644
index 00000000..83f03d42
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ComicTextElements.xml b/ComicRack/Output/Languages/pt-BR/ComicTextElements.xml
new file mode 100644
index 00000000..c6ff4804
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ComicTextElements.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/CommandKeys.xml b/ComicRack/Output/Languages/pt-BR/CommandKeys.xml
new file mode 100644
index 00000000..719f9000
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/CommandKeys.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Common.xml b/ComicRack/Output/Languages/pt-BR/Common.xml
new file mode 100644
index 00000000..98b7e290
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Common.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/CrashDialog.xml b/ComicRack/Output/Languages/pt-BR/CrashDialog.xml
new file mode 100644
index 00000000..e3298b18
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Default.xml b/ComicRack/Output/Languages/pt-BR/Default.xml
new file mode 100644
index 00000000..41f2bc0d
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Default.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/DeleteItemDialog.xml b/ComicRack/Output/Languages/pt-BR/DeleteItemDialog.xml
new file mode 100644
index 00000000..82f465a2
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/DeviceSelectDialog.xml b/ComicRack/Output/Languages/pt-BR/DeviceSelectDialog.xml
new file mode 100644
index 00000000..2c5b7fbd
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/DeviceSelectDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/DevicesEditDialog.xml b/ComicRack/Output/Languages/pt-BR/DevicesEditDialog.xml
new file mode 100644
index 00000000..72bff590
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/DevicesEditDialog.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/DonationDialog.xml b/ComicRack/Output/Languages/pt-BR/DonationDialog.xml
new file mode 100644
index 00000000..9260b9c7
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/EditListDialog.xml b/ComicRack/Output/Languages/pt-BR/EditListDialog.xml
new file mode 100644
index 00000000..6bb9a3dd
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/EditListDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ExportComicsDialog.xml b/ComicRack/Output/Languages/pt-BR/ExportComicsDialog.xml
new file mode 100644
index 00000000..0ac97943
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ExportComicsDialog.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ExportErrorsDialog.xml b/ComicRack/Output/Languages/pt-BR/ExportErrorsDialog.xml
new file mode 100644
index 00000000..8c852bec
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/FileFilter.xml b/ComicRack/Output/Languages/pt-BR/FileFilter.xml
new file mode 100644
index 00000000..cc813658
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/FileFilter.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/FolderListDialog.xml b/ComicRack/Output/Languages/pt-BR/FolderListDialog.xml
new file mode 100644
index 00000000..39934f2f
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/FolderListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Groups.xml b/ComicRack/Output/Languages/pt-BR/Groups.xml
new file mode 100644
index 00000000..179dd269
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Groups.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ImageRotation.xml b/ComicRack/Output/Languages/pt-BR/ImageRotation.xml
new file mode 100644
index 00000000..2efe7dbb
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ItemView.xml b/ComicRack/Output/Languages/pt-BR/ItemView.xml
new file mode 100644
index 00000000..f43d8ae7
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ItemViewMode.xml b/ComicRack/Output/Languages/pt-BR/ItemViewMode.xml
new file mode 100644
index 00000000..6933fa3f
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Keyboard.xml b/ComicRack/Output/Languages/pt-BR/Keyboard.xml
new file mode 100644
index 00000000..1612867d
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Keyboard.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/pt-BR/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..eb985459
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/KeyboardShortcutEditor.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/LanguageInfo.xml b/ComicRack/Output/Languages/pt-BR/LanguageInfo.xml
new file mode 100644
index 00000000..883f4906
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/LanguageInfo.xml
@@ -0,0 +1,6 @@
+
+
+ Knight Rider, SQ
+ http://soquadrinhos.com
+ pt-BR
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ListEditorDialog.xml b/ComicRack/Output/Languages/pt-BR/ListEditorDialog.xml
new file mode 100644
index 00000000..33eeb00f
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ListEditorDialog.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ListLayoutDialog.xml b/ComicRack/Output/Languages/pt-BR/ListLayoutDialog.xml
new file mode 100644
index 00000000..0edb9300
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ListLayoutDialog.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ListSelectorControl.xml b/ComicRack/Output/Languages/pt-BR/ListSelectorControl.xml
new file mode 100644
index 00000000..0939dcad
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/MagnifySetupControl.xml b/ComicRack/Output/Languages/pt-BR/MagnifySetupControl.xml
new file mode 100644
index 00000000..8a8253a0
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/MainForm.xml b/ComicRack/Output/Languages/pt-BR/MainForm.xml
new file mode 100644
index 00000000..64da8bff
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/MainForm.xml
@@ -0,0 +1,269 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/MainView.xml b/ComicRack/Output/Languages/pt-BR/MainView.xml
new file mode 100644
index 00000000..4c783bf7
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/MainView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/MatcherEditor.xml b/ComicRack/Output/Languages/pt-BR/MatcherEditor.xml
new file mode 100644
index 00000000..0101e373
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/MatcherEditor.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Matchers.xml b/ComicRack/Output/Languages/pt-BR/Matchers.xml
new file mode 100644
index 00000000..b0ca831a
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Matchers.xml
@@ -0,0 +1,109 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Messages.xml b/ComicRack/Output/Languages/pt-BR/Messages.xml
new file mode 100644
index 00000000..1552a8da
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Messages.xml
@@ -0,0 +1,150 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/pt-BR/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..1903b819
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/MultipleComicBooksDialog.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/NetStatsDialog.xml b/ComicRack/Output/Languages/pt-BR/NetStatsDialog.xml
new file mode 100644
index 00000000..418306ee
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/NewsDialog.xml b/ComicRack/Output/Languages/pt-BR/NewsDialog.xml
new file mode 100644
index 00000000..18d8a7aa
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/OpenRemoteDialog.xml b/ComicRack/Output/Languages/pt-BR/OpenRemoteDialog.xml
new file mode 100644
index 00000000..e46c694d
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/PagesView.xml b/ComicRack/Output/Languages/pt-BR/PagesView.xml
new file mode 100644
index 00000000..ada8eeb4
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/PagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/PasswordDialog.xml b/ComicRack/Output/Languages/pt-BR/PasswordDialog.xml
new file mode 100644
index 00000000..f73211bd
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/PendingTasksDialog.xml b/ComicRack/Output/Languages/pt-BR/PendingTasksDialog.xml
new file mode 100644
index 00000000..3c8362a0
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/PluginEngine.xml b/ComicRack/Output/Languages/pt-BR/PluginEngine.xml
new file mode 100644
index 00000000..42e32994
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/PluginEngine.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/PreferencesDialog.xml b/ComicRack/Output/Languages/pt-BR/PreferencesDialog.xml
new file mode 100644
index 00000000..b24efb0e
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/PreferencesDialog.xml
@@ -0,0 +1,148 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ProgressDialog.xml b/ComicRack/Output/Languages/pt-BR/ProgressDialog.xml
new file mode 100644
index 00000000..66f8ec98
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/QuestionDialog.xml b/ComicRack/Output/Languages/pt-BR/QuestionDialog.xml
new file mode 100644
index 00000000..68975196
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/QuickOpenView.xml b/ComicRack/Output/Languages/pt-BR/QuickOpenView.xml
new file mode 100644
index 00000000..dc4dab82
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ReaderForm.xml b/ComicRack/Output/Languages/pt-BR/ReaderForm.xml
new file mode 100644
index 00000000..ecb92c16
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/pt-BR/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..1daf8e07
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Script.Autonumber.xml b/ComicRack/Output/Languages/pt-BR/Script.Autonumber.xml
new file mode 100644
index 00000000..6459be4b
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Script.CommitProposed.xml b/ComicRack/Output/Languages/pt-BR/Script.CommitProposed.xml
new file mode 100644
index 00000000..a52dc35e
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Script.NewComics.xml b/ComicRack/Output/Languages/pt-BR/Script.NewComics.xml
new file mode 100644
index 00000000..d626c8ee
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/pt-BR/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..53919436
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Script.SaveCSVList.xml b/ComicRack/Output/Languages/pt-BR/Script.SaveCSVList.xml
new file mode 100644
index 00000000..008ff6d3
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/pt-BR/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..f958dd39
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/SearchBrowser.xml b/ComicRack/Output/Languages/pt-BR/SearchBrowser.xml
new file mode 100644
index 00000000..5334c53a
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/SearchBrowser.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/SearchMenu.xml b/ComicRack/Output/Languages/pt-BR/SearchMenu.xml
new file mode 100644
index 00000000..e24b5608
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Settings.xml b/ComicRack/Output/Languages/pt-BR/Settings.xml
new file mode 100644
index 00000000..758959f7
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Settings.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ShowErrorsDialog.xml b/ComicRack/Output/Languages/pt-BR/ShowErrorsDialog.xml
new file mode 100644
index 00000000..bd40d6fb
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ShowErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/SmallComicPreview.xml b/ComicRack/Output/Languages/pt-BR/SmallComicPreview.xml
new file mode 100644
index 00000000..f747c50c
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/SmallComicPreview.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/SmartListDialog.xml b/ComicRack/Output/Languages/pt-BR/SmartListDialog.xml
new file mode 100644
index 00000000..6d6c7d06
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/SmartListDialog.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/TasksDialog.xml b/ComicRack/Output/Languages/pt-BR/TasksDialog.xml
new file mode 100644
index 00000000..3d946ccc
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/TextBoxContextMenu.xml b/ComicRack/Output/Languages/pt-BR/TextBoxContextMenu.xml
new file mode 100644
index 00000000..591ef183
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/TextBoxContextMenu.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/Textures.xml b/ComicRack/Output/Languages/pt-BR/Textures.xml
new file mode 100644
index 00000000..3591d1ec
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/Textures.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ValueEditorDialog.xml b/ComicRack/Output/Languages/pt-BR/ValueEditorDialog.xml
new file mode 100644
index 00000000..2e13294b
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ValueEditorDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/pt-BR/ZoomDialog.xml b/ComicRack/Output/Languages/pt-BR/ZoomDialog.xml
new file mode 100644
index 00000000..708271f5
--- /dev/null
+++ b/ComicRack/Output/Languages/pt-BR/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru.zip b/ComicRack/Output/Languages/ru.zip
deleted file mode 100644
index e73c525d..00000000
Binary files a/ComicRack/Output/Languages/ru.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/ru/AddItemDialog.xml b/ComicRack/Output/Languages/ru/AddItemDialog.xml
new file mode 100644
index 00000000..b9ce20a7
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/Columns.xml b/ComicRack/Output/Languages/ru/Columns.xml
new file mode 100644
index 00000000..cb5f42a1
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/Columns.xml
@@ -0,0 +1,107 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ComicBook.xml b/ComicRack/Output/Languages/ru/ComicBook.xml
new file mode 100644
index 00000000..f14ba141
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ComicBook.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ComicBookDialog.xml b/ComicRack/Output/Languages/ru/ComicBookDialog.xml
new file mode 100644
index 00000000..2fc5f0a5
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ComicBookDialog.xml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ComicBrowserControl.xml b/ComicRack/Output/Languages/ru/ComicBrowserControl.xml
new file mode 100644
index 00000000..aa54be7e
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ComicBrowserControl.xml
@@ -0,0 +1,76 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/ru/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..a5f65387
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ComicDataPasteDialog.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/ru/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..44f45865
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/ru/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..60d76c90
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ComicListLibraryBrowser.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ComicPageType.xml b/ComicRack/Output/Languages/ru/ComicPageType.xml
new file mode 100644
index 00000000..0d7f6f23
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ComicPagesView.xml b/ComicRack/Output/Languages/ru/ComicPagesView.xml
new file mode 100644
index 00000000..d93281a8
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ComicPagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/CommandKeys.xml b/ComicRack/Output/Languages/ru/CommandKeys.xml
new file mode 100644
index 00000000..3cf29beb
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/CommandKeys.xml
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/Default.xml b/ComicRack/Output/Languages/ru/Default.xml
new file mode 100644
index 00000000..e04e7bd2
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/Default.xml
@@ -0,0 +1,33 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/DeleteItemDialog.xml b/ComicRack/Output/Languages/ru/DeleteItemDialog.xml
new file mode 100644
index 00000000..bc819024
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ExportComicsDialog.xml b/ComicRack/Output/Languages/ru/ExportComicsDialog.xml
new file mode 100644
index 00000000..c41c2ff8
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ExportComicsDialog.xml
@@ -0,0 +1,63 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ExportErrorsDialog.xml b/ComicRack/Output/Languages/ru/ExportErrorsDialog.xml
new file mode 100644
index 00000000..21a0768a
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/FileFilter.xml b/ComicRack/Output/Languages/ru/FileFilter.xml
new file mode 100644
index 00000000..e6081b4e
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/FileFilter.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/Groups.xml b/ComicRack/Output/Languages/ru/Groups.xml
new file mode 100644
index 00000000..4cd7ae66
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/Groups.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ItemView.xml b/ComicRack/Output/Languages/ru/ItemView.xml
new file mode 100644
index 00000000..8ebdec5a
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/Keyboard.xml b/ComicRack/Output/Languages/ru/Keyboard.xml
new file mode 100644
index 00000000..a63ba160
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/Keyboard.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/ru/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..49d63327
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/KeyboardShortcutEditor.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/LanguageInfo.xml b/ComicRack/Output/Languages/ru/LanguageInfo.xml
new file mode 100644
index 00000000..562cbcea
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/LanguageInfo.xml
@@ -0,0 +1,6 @@
+
+
+ Michail Pokulev aka MuwaH9I
+ Русская Локализация ComicRack
+ ru
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ListLayoutDialog.xml b/ComicRack/Output/Languages/ru/ListLayoutDialog.xml
new file mode 100644
index 00000000..c9b01f41
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ListLayoutDialog.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ListSelectorControl.xml b/ComicRack/Output/Languages/ru/ListSelectorControl.xml
new file mode 100644
index 00000000..c346755f
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ListSelectorControl.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/MagnifySetupControl.xml b/ComicRack/Output/Languages/ru/MagnifySetupControl.xml
new file mode 100644
index 00000000..252ee63b
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/MagnifySetupControl.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/MainForm.xml b/ComicRack/Output/Languages/ru/MainForm.xml
new file mode 100644
index 00000000..7740f9e0
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/MainForm.xml
@@ -0,0 +1,236 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/MainView.xml b/ComicRack/Output/Languages/ru/MainView.xml
new file mode 100644
index 00000000..c514084b
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/MainView.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/Matchers.xml b/ComicRack/Output/Languages/ru/Matchers.xml
new file mode 100644
index 00000000..1a68e64d
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/Matchers.xml
@@ -0,0 +1,44 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/Messages.xml b/ComicRack/Output/Languages/ru/Messages.xml
new file mode 100644
index 00000000..6f07fec5
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/Messages.xml
@@ -0,0 +1,94 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/ru/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..b35c579d
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/MultipleComicBooksDialog.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/NewsDialog.xml b/ComicRack/Output/Languages/ru/NewsDialog.xml
new file mode 100644
index 00000000..be57069b
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/NewsDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/PagesView.xml b/ComicRack/Output/Languages/ru/PagesView.xml
new file mode 100644
index 00000000..59110d38
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/PagesView.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/PasswordDialog.xml b/ComicRack/Output/Languages/ru/PasswordDialog.xml
new file mode 100644
index 00000000..9e83843f
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/PendingTasksDialog.xml b/ComicRack/Output/Languages/ru/PendingTasksDialog.xml
new file mode 100644
index 00000000..9abfd92f
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/PreferencesDialog.xml b/ComicRack/Output/Languages/ru/PreferencesDialog.xml
new file mode 100644
index 00000000..46973c76
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/PreferencesDialog.xml
@@ -0,0 +1,100 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ProgressDialog.xml b/ComicRack/Output/Languages/ru/ProgressDialog.xml
new file mode 100644
index 00000000..b2ccfa03
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/QuestionDialog.xml b/ComicRack/Output/Languages/ru/QuestionDialog.xml
new file mode 100644
index 00000000..6d6158a7
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ReaderForm.xml b/ComicRack/Output/Languages/ru/ReaderForm.xml
new file mode 100644
index 00000000..d4ec6a6e
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/Script.Autonumber.xml b/ComicRack/Output/Languages/ru/Script.Autonumber.xml
new file mode 100644
index 00000000..64e97b39
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/Script.Autonumber.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/Script.CommitProposed.xml b/ComicRack/Output/Languages/ru/Script.CommitProposed.xml
new file mode 100644
index 00000000..ab2a10c4
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/Script.CommitProposed.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/ru/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..58c05a70
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/Script.RenameBookFiles.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/Script.SaveCSVList.xml b/ComicRack/Output/Languages/ru/Script.SaveCSVList.xml
new file mode 100644
index 00000000..87a0c5af
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/Script.SaveCSVList.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/SearchBrowser.xml b/ComicRack/Output/Languages/ru/SearchBrowser.xml
new file mode 100644
index 00000000..8dbb3dd5
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/SearchBrowser.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/Settings.xml b/ComicRack/Output/Languages/ru/Settings.xml
new file mode 100644
index 00000000..677523f3
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/Settings.xml
@@ -0,0 +1,35 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/SmallComicPreview.xml b/ComicRack/Output/Languages/ru/SmallComicPreview.xml
new file mode 100644
index 00000000..5195fe54
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/SmallComicPreview.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/SmartListDialog.xml b/ComicRack/Output/Languages/ru/SmartListDialog.xml
new file mode 100644
index 00000000..5bcde4cb
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/SmartListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/ru/ZoomDialog.xml b/ComicRack/Output/Languages/ru/ZoomDialog.xml
new file mode 100644
index 00000000..b69724c6
--- /dev/null
+++ b/ComicRack/Output/Languages/ru/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK.zip b/ComicRack/Output/Languages/sk-SK.zip
deleted file mode 100644
index 69cb2306..00000000
Binary files a/ComicRack/Output/Languages/sk-SK.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/sk-SK/AddItemDialog.xml b/ComicRack/Output/Languages/sk-SK/AddItemDialog.xml
new file mode 100644
index 00000000..60db85d7
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Columns.xml b/ComicRack/Output/Languages/sk-SK/Columns.xml
new file mode 100644
index 00000000..dbdb30d3
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Columns.xml
@@ -0,0 +1,145 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ComicBook.xml b/ComicRack/Output/Languages/sk-SK/ComicBook.xml
new file mode 100644
index 00000000..01d413dd
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ComicBook.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ComicBookDialog.xml b/ComicRack/Output/Languages/sk-SK/ComicBookDialog.xml
new file mode 100644
index 00000000..5b13476d
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ComicBookDialog.xml
@@ -0,0 +1,81 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ComicBrowserControl.xml b/ComicRack/Output/Languages/sk-SK/ComicBrowserControl.xml
new file mode 100644
index 00000000..51f8928a
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ComicBrowserControl.xml
@@ -0,0 +1,96 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/sk-SK/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..62d3f938
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ComicDataPasteDialog.xml
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/sk-SK/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..9e5b7eb9
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/sk-SK/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..602439fc
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/sk-SK/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..10c36a70
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ComicListLibraryBrowser.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ComicPageType.xml b/ComicRack/Output/Languages/sk-SK/ComicPageType.xml
new file mode 100644
index 00000000..08b8dbce
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ComicPagesView.xml b/ComicRack/Output/Languages/sk-SK/ComicPagesView.xml
new file mode 100644
index 00000000..d25501cb
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ComicPagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/CommandKeys.xml b/ComicRack/Output/Languages/sk-SK/CommandKeys.xml
new file mode 100644
index 00000000..b1d6c25c
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/CommandKeys.xml
@@ -0,0 +1,111 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/CrashDialog.xml b/ComicRack/Output/Languages/sk-SK/CrashDialog.xml
new file mode 100644
index 00000000..9417f25d
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Default.xml b/ComicRack/Output/Languages/sk-SK/Default.xml
new file mode 100644
index 00000000..f1cb7af4
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Default.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/DeleteItemDialog.xml b/ComicRack/Output/Languages/sk-SK/DeleteItemDialog.xml
new file mode 100644
index 00000000..9c354d76
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/DonationDialog.xml b/ComicRack/Output/Languages/sk-SK/DonationDialog.xml
new file mode 100644
index 00000000..483e8b76
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ExportComicsDialog.xml b/ComicRack/Output/Languages/sk-SK/ExportComicsDialog.xml
new file mode 100644
index 00000000..21c9a346
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ExportComicsDialog.xml
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ExportErrorsDialog.xml b/ComicRack/Output/Languages/sk-SK/ExportErrorsDialog.xml
new file mode 100644
index 00000000..d3db5fa3
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/FileFilter.xml b/ComicRack/Output/Languages/sk-SK/FileFilter.xml
new file mode 100644
index 00000000..ac6fe96f
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/FileFilter.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/FolderListDialog.xml b/ComicRack/Output/Languages/sk-SK/FolderListDialog.xml
new file mode 100644
index 00000000..c645a3c8
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/FolderListDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Groups.xml b/ComicRack/Output/Languages/sk-SK/Groups.xml
new file mode 100644
index 00000000..7a08d6cc
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Groups.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ImageRotation.xml b/ComicRack/Output/Languages/sk-SK/ImageRotation.xml
new file mode 100644
index 00000000..570d2415
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ItemView.xml b/ComicRack/Output/Languages/sk-SK/ItemView.xml
new file mode 100644
index 00000000..339864ca
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ItemViewMode.xml b/ComicRack/Output/Languages/sk-SK/ItemViewMode.xml
new file mode 100644
index 00000000..b568e144
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Keyboard.xml b/ComicRack/Output/Languages/sk-SK/Keyboard.xml
new file mode 100644
index 00000000..586c37ae
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Keyboard.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/sk-SK/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..42762aa0
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/KeyboardShortcutEditor.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/LanguageInfo.xml b/ComicRack/Output/Languages/sk-SK/LanguageInfo.xml
new file mode 100644
index 00000000..8e3dfdb3
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/LanguageInfo.xml
@@ -0,0 +1,6 @@
+
+
+ Lolimilk, Kurama
+ SK_1.4 v0.9.133
+ sk-SK
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ListEditorDialog.xml b/ComicRack/Output/Languages/sk-SK/ListEditorDialog.xml
new file mode 100644
index 00000000..7366613d
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ListEditorDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ListLayoutDialog.xml b/ComicRack/Output/Languages/sk-SK/ListLayoutDialog.xml
new file mode 100644
index 00000000..dc224327
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ListLayoutDialog.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ListSelectorControl.xml b/ComicRack/Output/Languages/sk-SK/ListSelectorControl.xml
new file mode 100644
index 00000000..a6724a09
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/MagnifySetupControl.xml b/ComicRack/Output/Languages/sk-SK/MagnifySetupControl.xml
new file mode 100644
index 00000000..9a2a070d
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/MainForm.xml b/ComicRack/Output/Languages/sk-SK/MainForm.xml
new file mode 100644
index 00000000..71260a92
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/MainForm.xml
@@ -0,0 +1,257 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/MainView.xml b/ComicRack/Output/Languages/sk-SK/MainView.xml
new file mode 100644
index 00000000..be2272e1
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/MainView.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Matchers.xml b/ComicRack/Output/Languages/sk-SK/Matchers.xml
new file mode 100644
index 00000000..e05ddbfc
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Matchers.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Messages.xml b/ComicRack/Output/Languages/sk-SK/Messages.xml
new file mode 100644
index 00000000..a54f6f83
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Messages.xml
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/sk-SK/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..864a92af
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/MultipleComicBooksDialog.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/NetStatsDialog.xml b/ComicRack/Output/Languages/sk-SK/NetStatsDialog.xml
new file mode 100644
index 00000000..da75d24c
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/NewsDialog.xml b/ComicRack/Output/Languages/sk-SK/NewsDialog.xml
new file mode 100644
index 00000000..1302d06e
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/OpenRemoteDialog.xml b/ComicRack/Output/Languages/sk-SK/OpenRemoteDialog.xml
new file mode 100644
index 00000000..c844f6e8
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/PagesView.xml b/ComicRack/Output/Languages/sk-SK/PagesView.xml
new file mode 100644
index 00000000..85f39eb5
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/PagesView.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/PasswordDialog.xml b/ComicRack/Output/Languages/sk-SK/PasswordDialog.xml
new file mode 100644
index 00000000..f4925cf6
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/PendingTasksDialog.xml b/ComicRack/Output/Languages/sk-SK/PendingTasksDialog.xml
new file mode 100644
index 00000000..6f9d2560
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/PreferencesDialog.xml b/ComicRack/Output/Languages/sk-SK/PreferencesDialog.xml
new file mode 100644
index 00000000..155f1703
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/PreferencesDialog.xml
@@ -0,0 +1,143 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ProgressDialog.xml b/ComicRack/Output/Languages/sk-SK/ProgressDialog.xml
new file mode 100644
index 00000000..fdb0331b
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/QuestionDialog.xml b/ComicRack/Output/Languages/sk-SK/QuestionDialog.xml
new file mode 100644
index 00000000..f9f9f287
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/QuickOpenView.xml b/ComicRack/Output/Languages/sk-SK/QuickOpenView.xml
new file mode 100644
index 00000000..7a959955
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/QuickOpenView.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ReaderForm.xml b/ComicRack/Output/Languages/sk-SK/ReaderForm.xml
new file mode 100644
index 00000000..d6c65171
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/sk-SK/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..822f4ddc
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Script.Autonumber.xml b/ComicRack/Output/Languages/sk-SK/Script.Autonumber.xml
new file mode 100644
index 00000000..d5f89220
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Script.CommitProposed.xml b/ComicRack/Output/Languages/sk-SK/Script.CommitProposed.xml
new file mode 100644
index 00000000..0eb9bfbe
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Script.NewComics.xml b/ComicRack/Output/Languages/sk-SK/Script.NewComics.xml
new file mode 100644
index 00000000..9ff21d89
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/sk-SK/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..3b904343
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Script.SaveCSVList.xml b/ComicRack/Output/Languages/sk-SK/Script.SaveCSVList.xml
new file mode 100644
index 00000000..8be49249
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/sk-SK/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..2cb03ef9
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/SearchBrowser.xml b/ComicRack/Output/Languages/sk-SK/SearchBrowser.xml
new file mode 100644
index 00000000..31118f5e
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/SearchBrowser.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/SearchMenu.xml b/ComicRack/Output/Languages/sk-SK/SearchMenu.xml
new file mode 100644
index 00000000..7b1a88fa
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Settings.xml b/ComicRack/Output/Languages/sk-SK/Settings.xml
new file mode 100644
index 00000000..3ff4bbf8
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Settings.xml
@@ -0,0 +1,48 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/SmallComicPreview.xml b/ComicRack/Output/Languages/sk-SK/SmallComicPreview.xml
new file mode 100644
index 00000000..084845e7
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/SmallComicPreview.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/SmartListDialog.xml b/ComicRack/Output/Languages/sk-SK/SmartListDialog.xml
new file mode 100644
index 00000000..e8c09e83
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/SmartListDialog.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/TasksDialog.xml b/ComicRack/Output/Languages/sk-SK/TasksDialog.xml
new file mode 100644
index 00000000..a9677d65
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/TextBoxContextMenu.xml b/ComicRack/Output/Languages/sk-SK/TextBoxContextMenu.xml
new file mode 100644
index 00000000..12a18332
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/TextBoxContextMenu.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/Textures.xml b/ComicRack/Output/Languages/sk-SK/Textures.xml
new file mode 100644
index 00000000..356d5ab2
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/Textures.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/sk-SK/ZoomDialog.xml b/ComicRack/Output/Languages/sk-SK/ZoomDialog.xml
new file mode 100644
index 00000000..73a5a639
--- /dev/null
+++ b/ComicRack/Output/Languages/sk-SK/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr.zip b/ComicRack/Output/Languages/tr.zip
deleted file mode 100644
index a6b694ea..00000000
Binary files a/ComicRack/Output/Languages/tr.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/tr/AddItemDialog.xml b/ComicRack/Output/Languages/tr/AddItemDialog.xml
new file mode 100644
index 00000000..3c617e1b
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/Columns.xml b/ComicRack/Output/Languages/tr/Columns.xml
new file mode 100644
index 00000000..0b9e42eb
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/Columns.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ComicBook.xml b/ComicRack/Output/Languages/tr/ComicBook.xml
new file mode 100644
index 00000000..ae5db75d
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ComicBook.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ComicBookDialog.xml b/ComicRack/Output/Languages/tr/ComicBookDialog.xml
new file mode 100644
index 00000000..c99a22a6
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ComicBookDialog.xml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ComicBrowserControl.xml b/ComicRack/Output/Languages/tr/ComicBrowserControl.xml
new file mode 100644
index 00000000..82ec9732
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ComicBrowserControl.xml
@@ -0,0 +1,84 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/tr/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..cf15642f
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ComicDataPasteDialog.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/tr/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..c2130d14
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/tr/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..df7aef37
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ComicListLibraryBrowser.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ComicPageType.xml b/ComicRack/Output/Languages/tr/ComicPageType.xml
new file mode 100644
index 00000000..ee449a89
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ComicPagesView.xml b/ComicRack/Output/Languages/tr/ComicPagesView.xml
new file mode 100644
index 00000000..14278326
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ComicPagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/CommandKeys.xml b/ComicRack/Output/Languages/tr/CommandKeys.xml
new file mode 100644
index 00000000..81409b84
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/CommandKeys.xml
@@ -0,0 +1,91 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/CrashDialog.xml b/ComicRack/Output/Languages/tr/CrashDialog.xml
new file mode 100644
index 00000000..46071235
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/Default.xml b/ComicRack/Output/Languages/tr/Default.xml
new file mode 100644
index 00000000..960de2a1
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/Default.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/DeleteItemDialog.xml b/ComicRack/Output/Languages/tr/DeleteItemDialog.xml
new file mode 100644
index 00000000..44c8ea73
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ExportComicsDialog.xml b/ComicRack/Output/Languages/tr/ExportComicsDialog.xml
new file mode 100644
index 00000000..404c5858
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ExportComicsDialog.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ExportErrorsDialog.xml b/ComicRack/Output/Languages/tr/ExportErrorsDialog.xml
new file mode 100644
index 00000000..375f1899
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/FileFilter.xml b/ComicRack/Output/Languages/tr/FileFilter.xml
new file mode 100644
index 00000000..8476b1c3
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/FileFilter.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/Groups.xml b/ComicRack/Output/Languages/tr/Groups.xml
new file mode 100644
index 00000000..c3d0ede9
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/Groups.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ImageRotation.xml b/ComicRack/Output/Languages/tr/ImageRotation.xml
new file mode 100644
index 00000000..3ed370fd
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ItemView.xml b/ComicRack/Output/Languages/tr/ItemView.xml
new file mode 100644
index 00000000..66434454
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/Keyboard.xml b/ComicRack/Output/Languages/tr/Keyboard.xml
new file mode 100644
index 00000000..5412de3a
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/Keyboard.xml
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/tr/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..52ae8080
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/KeyboardShortcutEditor.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/LanguageInfo.xml b/ComicRack/Output/Languages/tr/LanguageInfo.xml
new file mode 100644
index 00000000..bf3199e7
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/LanguageInfo.xml
@@ -0,0 +1,9 @@
+
+
+ Demir Turugay, Mert Kaya
+ for anything:
+demir.turugay@gmail.com
+withche.07@gmail.com
+ false
+ tr
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ListLayoutDialog.xml b/ComicRack/Output/Languages/tr/ListLayoutDialog.xml
new file mode 100644
index 00000000..899ed4cc
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ListLayoutDialog.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ListSelectorControl.xml b/ComicRack/Output/Languages/tr/ListSelectorControl.xml
new file mode 100644
index 00000000..24e129b4
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ListSelectorControl.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/MagnifySetupControl.xml b/ComicRack/Output/Languages/tr/MagnifySetupControl.xml
new file mode 100644
index 00000000..605f484f
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/MagnifySetupControl.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/MainForm.xml b/ComicRack/Output/Languages/tr/MainForm.xml
new file mode 100644
index 00000000..0895324f
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/MainForm.xml
@@ -0,0 +1,250 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/MainView.xml b/ComicRack/Output/Languages/tr/MainView.xml
new file mode 100644
index 00000000..3110b29d
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/MainView.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/Matchers.xml b/ComicRack/Output/Languages/tr/Matchers.xml
new file mode 100644
index 00000000..bc073b14
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/Matchers.xml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/Messages.xml b/ComicRack/Output/Languages/tr/Messages.xml
new file mode 100644
index 00000000..3a03ed17
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/Messages.xml
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/tr/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..a5fb19d8
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/MultipleComicBooksDialog.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/NewsDialog.xml b/ComicRack/Output/Languages/tr/NewsDialog.xml
new file mode 100644
index 00000000..def415d6
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/NewsDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/PagesView.xml b/ComicRack/Output/Languages/tr/PagesView.xml
new file mode 100644
index 00000000..85b5aa8b
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/PagesView.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/PasswordDialog.xml b/ComicRack/Output/Languages/tr/PasswordDialog.xml
new file mode 100644
index 00000000..7a22e461
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/PendingTasksDialog.xml b/ComicRack/Output/Languages/tr/PendingTasksDialog.xml
new file mode 100644
index 00000000..78b71da2
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/PreferencesDialog.xml b/ComicRack/Output/Languages/tr/PreferencesDialog.xml
new file mode 100644
index 00000000..27ba0e2b
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/PreferencesDialog.xml
@@ -0,0 +1,103 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ProgressDialog.xml b/ComicRack/Output/Languages/tr/ProgressDialog.xml
new file mode 100644
index 00000000..347a1587
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/QuestionDialog.xml b/ComicRack/Output/Languages/tr/QuestionDialog.xml
new file mode 100644
index 00000000..b162f603
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ReaderForm.xml b/ComicRack/Output/Languages/tr/ReaderForm.xml
new file mode 100644
index 00000000..59a1fd51
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/Script.Autonumber.xml b/ComicRack/Output/Languages/tr/Script.Autonumber.xml
new file mode 100644
index 00000000..98b87acd
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/Script.Autonumber.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/Script.CommitProposed.xml b/ComicRack/Output/Languages/tr/Script.CommitProposed.xml
new file mode 100644
index 00000000..e0e10637
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/Script.CommitProposed.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/tr/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..901ee7ac
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/Script.RenameBookFiles.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/Script.SaveCSVList.xml b/ComicRack/Output/Languages/tr/Script.SaveCSVList.xml
new file mode 100644
index 00000000..b8138f6e
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/Script.SaveCSVList.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/SearchBrowser.xml b/ComicRack/Output/Languages/tr/SearchBrowser.xml
new file mode 100644
index 00000000..8b2ae9d0
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/SearchBrowser.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/Settings.xml b/ComicRack/Output/Languages/tr/Settings.xml
new file mode 100644
index 00000000..dc522e1d
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/Settings.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/SmallComicPreview.xml b/ComicRack/Output/Languages/tr/SmallComicPreview.xml
new file mode 100644
index 00000000..3df8f047
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/SmallComicPreview.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/SmartListDialog.xml b/ComicRack/Output/Languages/tr/SmartListDialog.xml
new file mode 100644
index 00000000..9398478b
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/SmartListDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/tr/ZoomDialog.xml b/ComicRack/Output/Languages/tr/ZoomDialog.xml
new file mode 100644
index 00000000..80b24964
--- /dev/null
+++ b/ComicRack/Output/Languages/tr/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN.zip b/ComicRack/Output/Languages/zh-CN.zip
deleted file mode 100644
index 8188e19a..00000000
Binary files a/ComicRack/Output/Languages/zh-CN.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/zh-CN/AddItemDialog.xml b/ComicRack/Output/Languages/zh-CN/AddItemDialog.xml
new file mode 100644
index 00000000..d4d307fc
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Columns.xml b/ComicRack/Output/Languages/zh-CN/Columns.xml
new file mode 100644
index 00000000..9c43a7c6
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Columns.xml
@@ -0,0 +1,200 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicBook.xml b/ComicRack/Output/Languages/zh-CN/ComicBook.xml
new file mode 100644
index 00000000..65537a92
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicBook.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicBookDialog.xml b/ComicRack/Output/Languages/zh-CN/ComicBookDialog.xml
new file mode 100644
index 00000000..963d692e
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicBookDialog.xml
@@ -0,0 +1,95 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicBrowserControl.xml b/ComicRack/Output/Languages/zh-CN/ComicBrowserControl.xml
new file mode 100644
index 00000000..de4e1475
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicBrowserControl.xml
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/zh-CN/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..2fcf08f0
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicDataPasteDialog.xml
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/zh-CN/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..d6809b07
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicInfo.xml b/ComicRack/Output/Languages/zh-CN/ComicInfo.xml
new file mode 100644
index 00000000..e61cfaae
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicInfo.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/zh-CN/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..33458f4d
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/zh-CN/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..0db8ed26
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicListLibraryBrowser.xml
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicPagePosition.xml b/ComicRack/Output/Languages/zh-CN/ComicPagePosition.xml
new file mode 100644
index 00000000..7339b7c7
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicPagePosition.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicPageType.xml b/ComicRack/Output/Languages/zh-CN/ComicPageType.xml
new file mode 100644
index 00000000..db96c989
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicPagesView.xml b/ComicRack/Output/Languages/zh-CN/ComicPagesView.xml
new file mode 100644
index 00000000..561d5717
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicPagesView.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ComicTextElements.xml b/ComicRack/Output/Languages/zh-CN/ComicTextElements.xml
new file mode 100644
index 00000000..e1d9a9dd
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ComicTextElements.xml
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/CommandKeys.xml b/ComicRack/Output/Languages/zh-CN/CommandKeys.xml
new file mode 100644
index 00000000..1c0d2328
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/CommandKeys.xml
@@ -0,0 +1,113 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Common.xml b/ComicRack/Output/Languages/zh-CN/Common.xml
new file mode 100644
index 00000000..f81b6294
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Common.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/CrashDialog.xml b/ComicRack/Output/Languages/zh-CN/CrashDialog.xml
new file mode 100644
index 00000000..f6d97484
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Default.xml b/ComicRack/Output/Languages/zh-CN/Default.xml
new file mode 100644
index 00000000..e415ae8b
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Default.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/DeleteItemDialog.xml b/ComicRack/Output/Languages/zh-CN/DeleteItemDialog.xml
new file mode 100644
index 00000000..33fc5c4c
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/DeviceSelectDialog.xml b/ComicRack/Output/Languages/zh-CN/DeviceSelectDialog.xml
new file mode 100644
index 00000000..5969b877
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/DeviceSelectDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/DevicesEditDialog.xml b/ComicRack/Output/Languages/zh-CN/DevicesEditDialog.xml
new file mode 100644
index 00000000..af26b7d9
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/DevicesEditDialog.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/DonationDialog.xml b/ComicRack/Output/Languages/zh-CN/DonationDialog.xml
new file mode 100644
index 00000000..f22f86a4
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/EditListDialog.xml b/ComicRack/Output/Languages/zh-CN/EditListDialog.xml
new file mode 100644
index 00000000..315f415f
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/EditListDialog.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ExportComicsDialog.xml b/ComicRack/Output/Languages/zh-CN/ExportComicsDialog.xml
new file mode 100644
index 00000000..c1128de6
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ExportComicsDialog.xml
@@ -0,0 +1,66 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ExportErrorsDialog.xml b/ComicRack/Output/Languages/zh-CN/ExportErrorsDialog.xml
new file mode 100644
index 00000000..cfa93565
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/FileFilter.xml b/ComicRack/Output/Languages/zh-CN/FileFilter.xml
new file mode 100644
index 00000000..fea799a3
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/FileFilter.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/FolderListDialog.xml b/ComicRack/Output/Languages/zh-CN/FolderListDialog.xml
new file mode 100644
index 00000000..98df1a59
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/FolderListDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Groups.xml b/ComicRack/Output/Languages/zh-CN/Groups.xml
new file mode 100644
index 00000000..27b9ce38
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Groups.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ImageRotation.xml b/ComicRack/Output/Languages/zh-CN/ImageRotation.xml
new file mode 100644
index 00000000..85e07b84
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ItemView.xml b/ComicRack/Output/Languages/zh-CN/ItemView.xml
new file mode 100644
index 00000000..b896e8a6
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ItemViewMode.xml b/ComicRack/Output/Languages/zh-CN/ItemViewMode.xml
new file mode 100644
index 00000000..03971507
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Keyboard.xml b/ComicRack/Output/Languages/zh-CN/Keyboard.xml
new file mode 100644
index 00000000..20707056
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Keyboard.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/zh-CN/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..ac42eba3
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/KeyboardShortcutEditor.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/LanguageInfo.xml b/ComicRack/Output/Languages/zh-CN/LanguageInfo.xml
new file mode 100644
index 00000000..d36dccc4
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/LanguageInfo.xml
@@ -0,0 +1,7 @@
+
+
+ Patchouli
+ If you have any question about translation, please contact moeilfow@gmail.com
+ false
+ zh-CN
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ListEditorDialog.xml b/ComicRack/Output/Languages/zh-CN/ListEditorDialog.xml
new file mode 100644
index 00000000..4a7072af
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ListEditorDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ListLayoutDialog.xml b/ComicRack/Output/Languages/zh-CN/ListLayoutDialog.xml
new file mode 100644
index 00000000..c74d2d05
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ListLayoutDialog.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ListSelectorControl.xml b/ComicRack/Output/Languages/zh-CN/ListSelectorControl.xml
new file mode 100644
index 00000000..bc7a27e6
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/MagnifySetupControl.xml b/ComicRack/Output/Languages/zh-CN/MagnifySetupControl.xml
new file mode 100644
index 00000000..d6e91e66
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/MainForm.xml b/ComicRack/Output/Languages/zh-CN/MainForm.xml
new file mode 100644
index 00000000..b6a73efc
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/MainForm.xml
@@ -0,0 +1,270 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/MainView.xml b/ComicRack/Output/Languages/zh-CN/MainView.xml
new file mode 100644
index 00000000..cd97427a
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/MainView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/MatcherEditor.xml b/ComicRack/Output/Languages/zh-CN/MatcherEditor.xml
new file mode 100644
index 00000000..956eb891
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/MatcherEditor.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Matchers.xml b/ComicRack/Output/Languages/zh-CN/Matchers.xml
new file mode 100644
index 00000000..724e2e63
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Matchers.xml
@@ -0,0 +1,104 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Messages.xml b/ComicRack/Output/Languages/zh-CN/Messages.xml
new file mode 100644
index 00000000..982bab28
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Messages.xml
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/zh-CN/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..668e29c5
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/MultipleComicBooksDialog.xml
@@ -0,0 +1,65 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/NetStatsDialog.xml b/ComicRack/Output/Languages/zh-CN/NetStatsDialog.xml
new file mode 100644
index 00000000..0384aba0
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/NewsDialog.xml b/ComicRack/Output/Languages/zh-CN/NewsDialog.xml
new file mode 100644
index 00000000..f0eda97d
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/OpenRemoteDialog.xml b/ComicRack/Output/Languages/zh-CN/OpenRemoteDialog.xml
new file mode 100644
index 00000000..9e240b5b
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/OpenRemoteDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/PagesView.xml b/ComicRack/Output/Languages/zh-CN/PagesView.xml
new file mode 100644
index 00000000..87bee4b4
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/PagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/PasswordDialog.xml b/ComicRack/Output/Languages/zh-CN/PasswordDialog.xml
new file mode 100644
index 00000000..344a982e
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/PendingTasksDialog.xml b/ComicRack/Output/Languages/zh-CN/PendingTasksDialog.xml
new file mode 100644
index 00000000..f92bf7c4
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/PluginEngine.xml b/ComicRack/Output/Languages/zh-CN/PluginEngine.xml
new file mode 100644
index 00000000..4fc6882f
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/PluginEngine.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/PreferencesDialog.xml b/ComicRack/Output/Languages/zh-CN/PreferencesDialog.xml
new file mode 100644
index 00000000..5a37446b
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/PreferencesDialog.xml
@@ -0,0 +1,142 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ProgressDialog.xml b/ComicRack/Output/Languages/zh-CN/ProgressDialog.xml
new file mode 100644
index 00000000..e62948b8
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/QuestionDialog.xml b/ComicRack/Output/Languages/zh-CN/QuestionDialog.xml
new file mode 100644
index 00000000..b96eb8ac
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/QuickOpenView.xml b/ComicRack/Output/Languages/zh-CN/QuickOpenView.xml
new file mode 100644
index 00000000..9f976685
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/QuickOpenView.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ReaderForm.xml b/ComicRack/Output/Languages/zh-CN/ReaderForm.xml
new file mode 100644
index 00000000..47740c95
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/zh-CN/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..18836ff3
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.AutoadjustTwoPageMode.xml b/ComicRack/Output/Languages/zh-CN/Script.AutoadjustTwoPageMode.xml
new file mode 100644
index 00000000..36214d15
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.AutoadjustTwoPageMode.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.Autonumber.xml b/ComicRack/Output/Languages/zh-CN/Script.Autonumber.xml
new file mode 100644
index 00000000..1ad4e616
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.BookHasBeenOpened.xml b/ComicRack/Output/Languages/zh-CN/Script.BookHasBeenOpened.xml
new file mode 100644
index 00000000..fd18aadb
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.BookHasBeenOpened.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.ComicRackUserForum.xml b/ComicRack/Output/Languages/zh-CN/Script.ComicRackUserForum.xml
new file mode 100644
index 00000000..926bb0bb
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.ComicRackUserForum.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.CommitProposed.xml b/ComicRack/Output/Languages/zh-CN/Script.CommitProposed.xml
new file mode 100644
index 00000000..16766a44
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.DummyHtmlInfoPanel.xml b/ComicRack/Output/Languages/zh-CN/Script.DummyHtmlInfoPanel.xml
new file mode 100644
index 00000000..627568e6
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.DummyHtmlInfoPanel.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.DummySearch.xml b/ComicRack/Output/Languages/zh-CN/Script.DummySearch.xml
new file mode 100644
index 00000000..2cf80a88
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.DummySearch.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.DummyUIInfoPanel.xml b/ComicRack/Output/Languages/zh-CN/Script.DummyUIInfoPanel.xml
new file mode 100644
index 00000000..e806a798
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.DummyUIInfoPanel.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.FadeReadThumbnails.xml b/ComicRack/Output/Languages/zh-CN/Script.FadeReadThumbnails.xml
new file mode 100644
index 00000000..f75828f8
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.FadeReadThumbnails.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.GetBooksWith.xml b/ComicRack/Output/Languages/zh-CN/Script.GetBooksWith.xml
new file mode 100644
index 00000000..2a16e65f
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.GetBooksWith.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.NewComics.xml b/ComicRack/Output/Languages/zh-CN/Script.NewComics.xml
new file mode 100644
index 00000000..06e94d74
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.ParseComicPath.xml b/ComicRack/Output/Languages/zh-CN/Script.ParseComicPath.xml
new file mode 100644
index 00000000..53b42946
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.ParseComicPath.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/zh-CN/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..34830a18
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.SaveCSVList.xml b/ComicRack/Output/Languages/zh-CN/Script.SaveCSVList.xml
new file mode 100644
index 00000000..053f62ce
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/zh-CN/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..6e368e0b
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.SetComicInfoDirty.xml b/ComicRack/Output/Languages/zh-CN/Script.SetComicInfoDirty.xml
new file mode 100644
index 00000000..7efb7dfc
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.SetComicInfoDirty.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Script.WebLinkInfoPanel.xml b/ComicRack/Output/Languages/zh-CN/Script.WebLinkInfoPanel.xml
new file mode 100644
index 00000000..510e8da5
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Script.WebLinkInfoPanel.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/SearchBrowser.xml b/ComicRack/Output/Languages/zh-CN/SearchBrowser.xml
new file mode 100644
index 00000000..5050ffaa
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/SearchBrowser.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/SearchMenu.xml b/ComicRack/Output/Languages/zh-CN/SearchMenu.xml
new file mode 100644
index 00000000..ec03e2a0
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Settings.xml b/ComicRack/Output/Languages/zh-CN/Settings.xml
new file mode 100644
index 00000000..4df67509
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Settings.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ShowErrorsDialog.xml b/ComicRack/Output/Languages/zh-CN/ShowErrorsDialog.xml
new file mode 100644
index 00000000..dd8422e8
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ShowErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/SmallComicPreview.xml b/ComicRack/Output/Languages/zh-CN/SmallComicPreview.xml
new file mode 100644
index 00000000..19c17c80
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/SmallComicPreview.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/SmartListDialog.xml b/ComicRack/Output/Languages/zh-CN/SmartListDialog.xml
new file mode 100644
index 00000000..de47a448
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/SmartListDialog.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/TasksDialog.xml b/ComicRack/Output/Languages/zh-CN/TasksDialog.xml
new file mode 100644
index 00000000..c9dc71c5
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/TextBoxContextMenu.xml b/ComicRack/Output/Languages/zh-CN/TextBoxContextMenu.xml
new file mode 100644
index 00000000..b46196f7
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/TextBoxContextMenu.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/Textures.xml b/ComicRack/Output/Languages/zh-CN/Textures.xml
new file mode 100644
index 00000000..fb2ed2c0
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/Textures.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ValueEditorDialog.xml b/ComicRack/Output/Languages/zh-CN/ValueEditorDialog.xml
new file mode 100644
index 00000000..89e94510
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ValueEditorDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-CN/ZoomDialog.xml b/ComicRack/Output/Languages/zh-CN/ZoomDialog.xml
new file mode 100644
index 00000000..c274a712
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-CN/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans.zip b/ComicRack/Output/Languages/zh-Hans.zip
deleted file mode 100644
index b425b403..00000000
Binary files a/ComicRack/Output/Languages/zh-Hans.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/zh-Hans/AddItemDialog.xml b/ComicRack/Output/Languages/zh-Hans/AddItemDialog.xml
new file mode 100644
index 00000000..b92be568
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Columns.xml b/ComicRack/Output/Languages/zh-Hans/Columns.xml
new file mode 100644
index 00000000..6c593751
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Columns.xml
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ComicBook.xml b/ComicRack/Output/Languages/zh-Hans/ComicBook.xml
new file mode 100644
index 00000000..64bed631
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ComicBook.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ComicBookDialog.xml b/ComicRack/Output/Languages/zh-Hans/ComicBookDialog.xml
new file mode 100644
index 00000000..d2a8a04f
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ComicBookDialog.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ComicBrowserControl.xml b/ComicRack/Output/Languages/zh-Hans/ComicBrowserControl.xml
new file mode 100644
index 00000000..fcbc9282
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ComicBrowserControl.xml
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/zh-Hans/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..29c430a9
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ComicDataPasteDialog.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/zh-Hans/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..c785fec0
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/zh-Hans/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..433fd66a
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/zh-Hans/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..5d8ef705
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ComicListLibraryBrowser.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ComicPageType.xml b/ComicRack/Output/Languages/zh-Hans/ComicPageType.xml
new file mode 100644
index 00000000..f72a6fe3
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ComicPagesView.xml b/ComicRack/Output/Languages/zh-Hans/ComicPagesView.xml
new file mode 100644
index 00000000..e7f3f1cf
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ComicPagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/CommandKeys.xml b/ComicRack/Output/Languages/zh-Hans/CommandKeys.xml
new file mode 100644
index 00000000..eece31a6
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/CommandKeys.xml
@@ -0,0 +1,103 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/CrashDialog.xml b/ComicRack/Output/Languages/zh-Hans/CrashDialog.xml
new file mode 100644
index 00000000..e36792e1
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Default.xml b/ComicRack/Output/Languages/zh-Hans/Default.xml
new file mode 100644
index 00000000..3d44cedb
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Default.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/DeleteItemDialog.xml b/ComicRack/Output/Languages/zh-Hans/DeleteItemDialog.xml
new file mode 100644
index 00000000..d9119aa1
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/DonationDialog.xml b/ComicRack/Output/Languages/zh-Hans/DonationDialog.xml
new file mode 100644
index 00000000..30adf988
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ExportComicsDialog.xml b/ComicRack/Output/Languages/zh-Hans/ExportComicsDialog.xml
new file mode 100644
index 00000000..c6ac8f5f
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ExportComicsDialog.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ExportErrorsDialog.xml b/ComicRack/Output/Languages/zh-Hans/ExportErrorsDialog.xml
new file mode 100644
index 00000000..11eba157
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/FileFilter.xml b/ComicRack/Output/Languages/zh-Hans/FileFilter.xml
new file mode 100644
index 00000000..f137af93
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/FileFilter.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Groups.xml b/ComicRack/Output/Languages/zh-Hans/Groups.xml
new file mode 100644
index 00000000..708758e4
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Groups.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ImageRotation.xml b/ComicRack/Output/Languages/zh-Hans/ImageRotation.xml
new file mode 100644
index 00000000..0dcff6e2
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ItemView.xml b/ComicRack/Output/Languages/zh-Hans/ItemView.xml
new file mode 100644
index 00000000..dd2c0f16
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Keyboard.xml b/ComicRack/Output/Languages/zh-Hans/Keyboard.xml
new file mode 100644
index 00000000..816281cc
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Keyboard.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/zh-Hans/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..87bac4fd
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/KeyboardShortcutEditor.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/LanguageInfo.xml b/ComicRack/Output/Languages/zh-Hans/LanguageInfo.xml
new file mode 100644
index 00000000..ff24af50
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/LanguageInfo.xml
@@ -0,0 +1,6 @@
+
+
+ James Tsui
+ For questions about translation pls contact skyfire000@gmail.com
+ zh-Hans
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ListLayoutDialog.xml b/ComicRack/Output/Languages/zh-Hans/ListLayoutDialog.xml
new file mode 100644
index 00000000..96e00f59
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ListLayoutDialog.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ListSelectorControl.xml b/ComicRack/Output/Languages/zh-Hans/ListSelectorControl.xml
new file mode 100644
index 00000000..eca3542f
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/MagnifySetupControl.xml b/ComicRack/Output/Languages/zh-Hans/MagnifySetupControl.xml
new file mode 100644
index 00000000..b36efd3d
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/MainForm.xml b/ComicRack/Output/Languages/zh-Hans/MainForm.xml
new file mode 100644
index 00000000..af4c2f91
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/MainForm.xml
@@ -0,0 +1,254 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/MainView.xml b/ComicRack/Output/Languages/zh-Hans/MainView.xml
new file mode 100644
index 00000000..67f31bef
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/MainView.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Matchers.xml b/ComicRack/Output/Languages/zh-Hans/Matchers.xml
new file mode 100644
index 00000000..2ce7fcd4
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Matchers.xml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Messages.xml b/ComicRack/Output/Languages/zh-Hans/Messages.xml
new file mode 100644
index 00000000..8d771798
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Messages.xml
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/zh-Hans/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..d9a8f817
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/MultipleComicBooksDialog.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/NetStatsDialog.xml b/ComicRack/Output/Languages/zh-Hans/NetStatsDialog.xml
new file mode 100644
index 00000000..895b67da
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/NewsDialog.xml b/ComicRack/Output/Languages/zh-Hans/NewsDialog.xml
new file mode 100644
index 00000000..43387f86
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/OpenRemoteDialog.xml b/ComicRack/Output/Languages/zh-Hans/OpenRemoteDialog.xml
new file mode 100644
index 00000000..14742369
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/OpenRemoteDialog.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/PagesView.xml b/ComicRack/Output/Languages/zh-Hans/PagesView.xml
new file mode 100644
index 00000000..7759ace0
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/PagesView.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/PasswordDialog.xml b/ComicRack/Output/Languages/zh-Hans/PasswordDialog.xml
new file mode 100644
index 00000000..9816ef94
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/PendingTasksDialog.xml b/ComicRack/Output/Languages/zh-Hans/PendingTasksDialog.xml
new file mode 100644
index 00000000..7e4846eb
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/PreferencesDialog.xml b/ComicRack/Output/Languages/zh-Hans/PreferencesDialog.xml
new file mode 100644
index 00000000..cecd7dc7
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/PreferencesDialog.xml
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ProgressDialog.xml b/ComicRack/Output/Languages/zh-Hans/ProgressDialog.xml
new file mode 100644
index 00000000..63b1449a
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/QuestionDialog.xml b/ComicRack/Output/Languages/zh-Hans/QuestionDialog.xml
new file mode 100644
index 00000000..059b444b
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ReaderForm.xml b/ComicRack/Output/Languages/zh-Hans/ReaderForm.xml
new file mode 100644
index 00000000..f7ec754d
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/zh-Hans/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..a563cb6c
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Script.Autonumber.xml b/ComicRack/Output/Languages/zh-Hans/Script.Autonumber.xml
new file mode 100644
index 00000000..c7b3f1df
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Script.CommitProposed.xml b/ComicRack/Output/Languages/zh-Hans/Script.CommitProposed.xml
new file mode 100644
index 00000000..a452d849
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/zh-Hans/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..8372e889
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Script.SaveCSVList.xml b/ComicRack/Output/Languages/zh-Hans/Script.SaveCSVList.xml
new file mode 100644
index 00000000..25f76d58
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/zh-Hans/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..c7d87943
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/SearchBrowser.xml b/ComicRack/Output/Languages/zh-Hans/SearchBrowser.xml
new file mode 100644
index 00000000..ec87eff0
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/SearchBrowser.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/SearchMenu.xml b/ComicRack/Output/Languages/zh-Hans/SearchMenu.xml
new file mode 100644
index 00000000..d4c8dd47
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Settings.xml b/ComicRack/Output/Languages/zh-Hans/Settings.xml
new file mode 100644
index 00000000..0eac4a03
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Settings.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/SmallComicPreview.xml b/ComicRack/Output/Languages/zh-Hans/SmallComicPreview.xml
new file mode 100644
index 00000000..a6b8dc8c
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/SmallComicPreview.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/SmartListDialog.xml b/ComicRack/Output/Languages/zh-Hans/SmartListDialog.xml
new file mode 100644
index 00000000..69448c08
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/SmartListDialog.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/TextBoxContextMenu.xml b/ComicRack/Output/Languages/zh-Hans/TextBoxContextMenu.xml
new file mode 100644
index 00000000..8abf0e63
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/TextBoxContextMenu.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/Textures.xml b/ComicRack/Output/Languages/zh-Hans/Textures.xml
new file mode 100644
index 00000000..95bb97c2
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/Textures.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh-Hans/ZoomDialog.xml b/ComicRack/Output/Languages/zh-Hans/ZoomDialog.xml
new file mode 100644
index 00000000..40b04766
--- /dev/null
+++ b/ComicRack/Output/Languages/zh-Hans/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh.zip b/ComicRack/Output/Languages/zh.zip
deleted file mode 100644
index 90ac0c83..00000000
Binary files a/ComicRack/Output/Languages/zh.zip and /dev/null differ
diff --git a/ComicRack/Output/Languages/zh/AddItemDialog.xml b/ComicRack/Output/Languages/zh/AddItemDialog.xml
new file mode 100644
index 00000000..ddbaf87b
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/AddItemDialog.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ComicRack/Output/Languages/zh/Columns.xml b/ComicRack/Output/Languages/zh/Columns.xml
new file mode 100644
index 00000000..7d251d85
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Columns.xml
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ComicBook.xml b/ComicRack/Output/Languages/zh/ComicBook.xml
new file mode 100644
index 00000000..bcbebf39
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ComicBook.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ComicBookDialog.xml b/ComicRack/Output/Languages/zh/ComicBookDialog.xml
new file mode 100644
index 00000000..d54c75fa
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ComicBookDialog.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ComicBrowserControl.xml b/ComicRack/Output/Languages/zh/ComicBrowserControl.xml
new file mode 100644
index 00000000..6151eecb
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ComicBrowserControl.xml
@@ -0,0 +1,92 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ComicDataPasteDialog.xml b/ComicRack/Output/Languages/zh/ComicDataPasteDialog.xml
new file mode 100644
index 00000000..92ee999b
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ComicDataPasteDialog.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ComicDisplaySettingsDialog.xml b/ComicRack/Output/Languages/zh/ComicDisplaySettingsDialog.xml
new file mode 100644
index 00000000..30b971a4
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ComicDisplaySettingsDialog.xml
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ComicListFolderFilesBrowser.xml b/ComicRack/Output/Languages/zh/ComicListFolderFilesBrowser.xml
new file mode 100644
index 00000000..2368aed0
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ComicListFolderFilesBrowser.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ComicListLibraryBrowser.xml b/ComicRack/Output/Languages/zh/ComicListLibraryBrowser.xml
new file mode 100644
index 00000000..1a7a7bcb
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ComicListLibraryBrowser.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ComicPageType.xml b/ComicRack/Output/Languages/zh/ComicPageType.xml
new file mode 100644
index 00000000..36891466
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ComicPageType.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ComicPagesView.xml b/ComicRack/Output/Languages/zh/ComicPagesView.xml
new file mode 100644
index 00000000..bc2a0a34
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ComicPagesView.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/CommandKeys.xml b/ComicRack/Output/Languages/zh/CommandKeys.xml
new file mode 100644
index 00000000..30181ec7
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/CommandKeys.xml
@@ -0,0 +1,103 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/CrashDialog.xml b/ComicRack/Output/Languages/zh/CrashDialog.xml
new file mode 100644
index 00000000..4a543ec7
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/CrashDialog.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Default.xml b/ComicRack/Output/Languages/zh/Default.xml
new file mode 100644
index 00000000..42d62f8f
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Default.xml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/DeleteItemDialog.xml b/ComicRack/Output/Languages/zh/DeleteItemDialog.xml
new file mode 100644
index 00000000..7e388afa
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/DeleteItemDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/DonationDialog.xml b/ComicRack/Output/Languages/zh/DonationDialog.xml
new file mode 100644
index 00000000..a776209c
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/DonationDialog.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ExportComicsDialog.xml b/ComicRack/Output/Languages/zh/ExportComicsDialog.xml
new file mode 100644
index 00000000..3001acbf
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ExportComicsDialog.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ExportErrorsDialog.xml b/ComicRack/Output/Languages/zh/ExportErrorsDialog.xml
new file mode 100644
index 00000000..433e2f0f
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ExportErrorsDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/FileFilter.xml b/ComicRack/Output/Languages/zh/FileFilter.xml
new file mode 100644
index 00000000..a66d92fc
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/FileFilter.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/FolderListDialog.xml b/ComicRack/Output/Languages/zh/FolderListDialog.xml
new file mode 100644
index 00000000..2da322ca
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/FolderListDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Groups.xml b/ComicRack/Output/Languages/zh/Groups.xml
new file mode 100644
index 00000000..be3362a1
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Groups.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ImageRotation.xml b/ComicRack/Output/Languages/zh/ImageRotation.xml
new file mode 100644
index 00000000..351f53bf
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ImageRotation.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ItemView.xml b/ComicRack/Output/Languages/zh/ItemView.xml
new file mode 100644
index 00000000..94f6d1f6
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ItemView.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ItemViewMode.xml b/ComicRack/Output/Languages/zh/ItemViewMode.xml
new file mode 100644
index 00000000..362ffb00
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ItemViewMode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Keyboard.xml b/ComicRack/Output/Languages/zh/Keyboard.xml
new file mode 100644
index 00000000..3d363893
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Keyboard.xml
@@ -0,0 +1,68 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/KeyboardShortcutEditor.xml b/ComicRack/Output/Languages/zh/KeyboardShortcutEditor.xml
new file mode 100644
index 00000000..14cfd76e
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/KeyboardShortcutEditor.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/LanguageInfo.xml b/ComicRack/Output/Languages/zh/LanguageInfo.xml
new file mode 100644
index 00000000..64a4e800
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/LanguageInfo.xml
@@ -0,0 +1,6 @@
+
+
+ Dilon Tai
+ For questions about translation pls contact dilontai@gmail.com
+ zh-CHT
+
diff --git a/ComicRack/Output/Languages/zh/ListEditorDialog.xml b/ComicRack/Output/Languages/zh/ListEditorDialog.xml
new file mode 100644
index 00000000..c508e377
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ListEditorDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ListLayoutDialog.xml b/ComicRack/Output/Languages/zh/ListLayoutDialog.xml
new file mode 100644
index 00000000..d34f5e39
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ListLayoutDialog.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ListSelectorControl.xml b/ComicRack/Output/Languages/zh/ListSelectorControl.xml
new file mode 100644
index 00000000..f3c45130
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ListSelectorControl.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/MagnifySetupControl.xml b/ComicRack/Output/Languages/zh/MagnifySetupControl.xml
new file mode 100644
index 00000000..916864e3
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/MagnifySetupControl.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/MainForm.xml b/ComicRack/Output/Languages/zh/MainForm.xml
new file mode 100644
index 00000000..c0264afc
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/MainForm.xml
@@ -0,0 +1,254 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/MainView.xml b/ComicRack/Output/Languages/zh/MainView.xml
new file mode 100644
index 00000000..10d3900a
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/MainView.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Matchers.xml b/ComicRack/Output/Languages/zh/Matchers.xml
new file mode 100644
index 00000000..11accc02
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Matchers.xml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Messages.xml b/ComicRack/Output/Languages/zh/Messages.xml
new file mode 100644
index 00000000..0ae39fa5
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Messages.xml
@@ -0,0 +1,110 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/MultipleComicBooksDialog.xml b/ComicRack/Output/Languages/zh/MultipleComicBooksDialog.xml
new file mode 100644
index 00000000..3a89bf87
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/MultipleComicBooksDialog.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/NetStatsDialog.xml b/ComicRack/Output/Languages/zh/NetStatsDialog.xml
new file mode 100644
index 00000000..5e3841f1
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/NetStatsDialog.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/NewsDialog.xml b/ComicRack/Output/Languages/zh/NewsDialog.xml
new file mode 100644
index 00000000..c6d93468
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/NewsDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/OpenRemoteDialog.xml b/ComicRack/Output/Languages/zh/OpenRemoteDialog.xml
new file mode 100644
index 00000000..e7ece780
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/OpenRemoteDialog.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/PagesView.xml b/ComicRack/Output/Languages/zh/PagesView.xml
new file mode 100644
index 00000000..abc451cb
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/PagesView.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/PasswordDialog.xml b/ComicRack/Output/Languages/zh/PasswordDialog.xml
new file mode 100644
index 00000000..48de0734
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/PasswordDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/PendingTasksDialog.xml b/ComicRack/Output/Languages/zh/PendingTasksDialog.xml
new file mode 100644
index 00000000..8967d940
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/PendingTasksDialog.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/PreferencesDialog.xml b/ComicRack/Output/Languages/zh/PreferencesDialog.xml
new file mode 100644
index 00000000..c8b21334
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/PreferencesDialog.xml
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ProgressDialog.xml b/ComicRack/Output/Languages/zh/ProgressDialog.xml
new file mode 100644
index 00000000..db365c97
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ProgressDialog.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/QuestionDialog.xml b/ComicRack/Output/Languages/zh/QuestionDialog.xml
new file mode 100644
index 00000000..214ee6d5
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/QuestionDialog.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/QuickOpenView.xml b/ComicRack/Output/Languages/zh/QuickOpenView.xml
new file mode 100644
index 00000000..3eff6793
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/QuickOpenView.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ReaderForm.xml b/ComicRack/Output/Languages/zh/ReaderForm.xml
new file mode 100644
index 00000000..8b8c6da9
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ReaderForm.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/SaveWorkspaceDialog.xml b/ComicRack/Output/Languages/zh/SaveWorkspaceDialog.xml
new file mode 100644
index 00000000..8186dbbb
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/SaveWorkspaceDialog.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Script.Autonumber.xml b/ComicRack/Output/Languages/zh/Script.Autonumber.xml
new file mode 100644
index 00000000..79cdf054
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Script.Autonumber.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Script.CommitProposed.xml b/ComicRack/Output/Languages/zh/Script.CommitProposed.xml
new file mode 100644
index 00000000..0f1a749e
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Script.CommitProposed.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Script.NewComics.xml b/ComicRack/Output/Languages/zh/Script.NewComics.xml
new file mode 100644
index 00000000..4164866f
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Script.NewComics.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Script.RenameBookFiles.xml b/ComicRack/Output/Languages/zh/Script.RenameBookFiles.xml
new file mode 100644
index 00000000..5c4041f6
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Script.RenameBookFiles.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Script.SaveCSVList.xml b/ComicRack/Output/Languages/zh/Script.SaveCSVList.xml
new file mode 100644
index 00000000..44711f5d
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Script.SaveCSVList.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Script.SearchAndReplace.xml b/ComicRack/Output/Languages/zh/Script.SearchAndReplace.xml
new file mode 100644
index 00000000..4662e697
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Script.SearchAndReplace.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/SearchBrowser.xml b/ComicRack/Output/Languages/zh/SearchBrowser.xml
new file mode 100644
index 00000000..fdb3a173
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/SearchBrowser.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/SearchMenu.xml b/ComicRack/Output/Languages/zh/SearchMenu.xml
new file mode 100644
index 00000000..d91306f1
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/SearchMenu.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Settings.xml b/ComicRack/Output/Languages/zh/Settings.xml
new file mode 100644
index 00000000..9481fbd2
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Settings.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/SmallComicPreview.xml b/ComicRack/Output/Languages/zh/SmallComicPreview.xml
new file mode 100644
index 00000000..f83747ed
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/SmallComicPreview.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/SmartListDialog.xml b/ComicRack/Output/Languages/zh/SmartListDialog.xml
new file mode 100644
index 00000000..87106def
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/SmartListDialog.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/TasksDialog.xml b/ComicRack/Output/Languages/zh/TasksDialog.xml
new file mode 100644
index 00000000..fe7409ab
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/TasksDialog.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/TextBoxContextMenu.xml b/ComicRack/Output/Languages/zh/TextBoxContextMenu.xml
new file mode 100644
index 00000000..2345f5d8
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/TextBoxContextMenu.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/Textures.xml b/ComicRack/Output/Languages/zh/Textures.xml
new file mode 100644
index 00000000..a09c8f2f
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/Textures.xml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Output/Languages/zh/ZoomDialog.xml b/ComicRack/Output/Languages/zh/ZoomDialog.xml
new file mode 100644
index 00000000..a26ed16a
--- /dev/null
+++ b/ComicRack/Output/Languages/zh/ZoomDialog.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/ComicRack/Program.cs b/ComicRack/Program.cs
index 8cde5266..35184072 100644
--- a/ComicRack/Program.cs
+++ b/ComicRack/Program.cs
@@ -103,7 +103,7 @@ public bool PreFilterMessage(ref Message m)
public const string DefaultUserForm = "https://github.com/maforget/ComicRackCE/discussions";
- public const string DefaultLocalizePage = "https://web.archive.org/web/20170528182733fw_/http://comicrack.cyolito.com/faqs/12-how-to-create-language-packs";
+ public const string DefaultLocalizePage = "https://github.com/maforget/ComicRackCE/wiki/Localization";
public const string ComicRackTypeId = "cYo.ComicRack";
@@ -266,7 +266,7 @@ public static TRInfo[] InstalledLanguages
TRDictionary tRDictionary = null;
try
{
- tRDictionary = new TRDictionary(TR.ResourceFolder, "de");
+ tRDictionary = new TRDictionary(TR.ResourceFolder, "fr");
}
catch (Exception)
{
diff --git a/CompressIconFolders.ps1 b/CompressFolders.ps1
similarity index 81%
rename from CompressIconFolders.ps1
rename to CompressFolders.ps1
index 8844514d..29e7b7c7 100644
--- a/CompressIconFolders.ps1
+++ b/CompressFolders.ps1
@@ -27,10 +27,22 @@ if (-not (Test-Path $iconDirectory)) {
exit 1
}
-# Use Git to check for changes in the Resources/Icons directory
-$gitChangedFiles = git status --porcelain | Select-String -Pattern "^.+/Output/Resources/Icons/"
+# Get the languages directory
+$languagesDirectory = Join-Path -Path $BaseDirectory -ChildPath "Languages"
+
+# Print the languagesDirectory for debugging
+Write-Output "languagesDirectory: $languagesDirectory"
+
+if (-not (Test-Path $languagesDirectory)) {
+ Write-Error "The directory $languagesDirectory does not exist."
+ exit 1
+}
+
+# Use Git to check for changes in the Resources/Icons or Languages directory
+$gitChangedFiles = git status --porcelain | Select-String -Pattern "^.+/Output/Resources/Icons/|^.+/Output/Languages/"
$folders = Get-ChildItem -Path $iconDirectory -Directory
+$folders += Get-ChildItem -Path $languagesDirectory -Directory
# Iterate through each folder
foreach ($folder in $folders) {
diff --git a/README.md b/README.md
index 05c2ecab..d29d9e90 100644
--- a/README.md
+++ b/README.md
@@ -38,7 +38,7 @@ New Features are listed [here](https://github.com/maforget/ComicRackCE/wiki/New-
## Community Collaboration
To collaborate, open an Issue on the tracker or use GitHub discussions. Start with small, focused Pull Requests, avoiding large, vague commits. ChatGPT can help with small code snippets but not with complete rewrites. Use Visual Studio 2022 Community Edition for development, as it's more suitable than VS Code.
-We also need the Localizer tool created by cYo for translations.
+To help translate the application, check out the [localization wiki page](https://github.com/maforget/ComicRackCE/wiki/Localization).
## Installation
To install, download the [nightly installer](https://github.com/maforget/ComicRackCE/releases/download/nightly/ComicRackCESetup_nightly.exe "Nightly Release"), double-click it, and follow the instructions.