diff --git a/lib/jsyntaxpane-0.9.5.jar b/lib/jsyntaxpane-0.9.5.jar
index eef12b11b..bc4a42add 100644
Binary files a/lib/jsyntaxpane-0.9.5.jar and b/lib/jsyntaxpane-0.9.5.jar differ
diff --git a/src/com/jpexs/decompiler/flash/gui/GraphTreeFrame.java b/src/com/jpexs/decompiler/flash/gui/GraphTreeFrame.java
index 993bd7d63..4d1d63f02 100644
--- a/src/com/jpexs/decompiler/flash/gui/GraphTreeFrame.java
+++ b/src/com/jpexs/decompiler/flash/gui/GraphTreeFrame.java
@@ -1,16 +1,16 @@
/*
* Copyright (C) 2010-2015 JPEXS
- *
+ *
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
diff --git a/src/com/jpexs/decompiler/flash/gui/helpers/CheckResources.java b/src/com/jpexs/decompiler/flash/gui/helpers/CheckResources.java
index 96b7ca798..43c853a0a 100644
--- a/src/com/jpexs/decompiler/flash/gui/helpers/CheckResources.java
+++ b/src/com/jpexs/decompiler/flash/gui/helpers/CheckResources.java
@@ -1,16 +1,16 @@
/*
* Copyright (C) 2010-2015 JPEXS
- *
+ *
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
- *
+ *
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
@@ -18,6 +18,7 @@ package com.jpexs.decompiler.flash.gui.helpers;
import com.jpexs.decompiler.flash.gui.AboutDialog;
import com.jpexs.decompiler.flash.gui.AdvancedSettingsDialog;
+import com.jpexs.decompiler.flash.gui.DebugLogDialog;
import com.jpexs.decompiler.flash.gui.ErrorLogFrame;
import com.jpexs.decompiler.flash.gui.ExportDialog;
import com.jpexs.decompiler.flash.gui.FontEmbedDialog;
@@ -30,6 +31,7 @@ import com.jpexs.decompiler.flash.gui.MainFrame;
import com.jpexs.decompiler.flash.gui.ModeFrame;
import com.jpexs.decompiler.flash.gui.NewVersionDialog;
import com.jpexs.decompiler.flash.gui.RenameDialog;
+import com.jpexs.decompiler.flash.gui.ReplaceTraceDialog;
import com.jpexs.decompiler.flash.gui.SearchDialog;
import com.jpexs.decompiler.flash.gui.SearchResultsDialog;
import com.jpexs.decompiler.flash.gui.SelectLanguageDialog;
@@ -41,8 +43,9 @@ import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintStream;
+import java.util.HashMap;
+import java.util.Map;
import java.util.Properties;
-import java.util.Set;
import java.util.logging.Level;
import java.util.logging.Logger;
@@ -56,6 +59,7 @@ public class CheckResources {
Class[] classes = new Class[]{
AboutDialog.class,
AdvancedSettingsDialog.class,
+ DebugLogDialog.class,
ErrorLogFrame.class,
ExportDialog.class,
FontEmbedDialog.class,
@@ -69,49 +73,73 @@ public class CheckResources {
ModeFrame.class,
NewVersionDialog.class,
RenameDialog.class,
+ ReplaceTraceDialog.class,
SearchDialog.class,
SearchResultsDialog.class,
SelectLanguageDialog.class,
- ProxyFrame.class,
+ // ABC
DeobfuscationDialog.class,
NewTraitDialog.class,
- UsageFrame.class,};
- for (Class clazz : classes) {
- checkResources(clazz, stream);
- }
+ UsageFrame.class,
+ // Proxy
+ ProxyFrame.class,};
+ checkResources(classes, stream);
}
- public static void checkResources(Class clazz, PrintStream stream) {
+ private static void checkResources(Class[] classes, PrintStream stream) {
try {
- Properties prop = new Properties();
String[] languages = SelectLanguageDialog.getAvailableLanguages();
- String resourcePath = getResourcePath(clazz, null);
- InputStream is = CheckResources.class.getResourceAsStream(resourcePath);
- if (is == null) {
- stream.println("Resource file not found: " + resourcePath);
- return;
+ Map properties = new HashMap<>();
+ for (Class clazz : classes) {
+ String resourcePath = getResourcePath(clazz, null);
+ InputStream is = CheckResources.class.getResourceAsStream(resourcePath);
+ if (is == null) {
+ stream.println("Resource file not found: " + resourcePath);
+ return;
+ }
+ Properties prop = new Properties();
+ prop.load(is);
+ properties.put(clazz, prop);
}
- prop.load(is);
- Set keys = prop.keySet();
for (String lang : languages) {
if (lang.equals("en")) {
continue;
}
- Properties prop2 = new Properties();
- resourcePath = getResourcePath(clazz, lang);
- is = CheckResources.class.getResourceAsStream(resourcePath);
- if (is == null) {
- stream.println(lang + ": Resource file not found: " + resourcePath);
- continue;
- }
- prop2.load(is);
- for (Object key : keys) {
- String value = prop2.getProperty((String) key);
- if (value == null) {
- stream.println(lang + ": Property not found in resource file: " + clazz.getSimpleName() + ", property: " + key);
+ boolean firstMissing = true;
+ for (Class clazz : classes) {
+ Properties prop = properties.get(clazz);
+ Properties prop2 = new Properties();
+ String resourcePath = getResourcePath(clazz, lang);
+ InputStream is = CheckResources.class.getResourceAsStream(resourcePath);
+ if (is == null) {
+ stream.println(lang + ": Resource file not found: " + resourcePath);
+ continue;
}
+ try {
+ prop2.load(is);
+ } catch (Exception ex) {
+ Logger.getLogger(CheckResources.class.getName()).log(Level.SEVERE, "Cannot load resource:" + clazz.getSimpleName() + " " + lang, ex);
+ }
+
+ for (Object key : prop.keySet()) {
+ String keyStr = (String) key;
+ String value = prop2.getProperty(keyStr);
+ if (value == null) {
+ if (firstMissing) {
+ stream.println(lang);
+ stream.println("-----------------------------");
+ firstMissing = false;
+ }
+
+ stream.println(clazz.getSimpleName() + ", property: " + key + "=" + prop.getProperty(keyStr));
+ }
+ }
+ }
+
+ if (!firstMissing) {
+ stream.println();
}
}
} catch (FileNotFoundException ex) {
@@ -127,7 +155,7 @@ public class CheckResources {
name = name.substring("com.jpexs.decompiler.flash.gui.".length());
name = "/com/jpexs/decompiler/flash/gui/locales/" + name.replace(".", "/");
if (lang != null) {
- name += "_" + lang;
+ name += "_" + lang.replace("-", "_");
}
name += ".properties";
}
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_ca.properties b/src/com/jpexs/decompiler/flash/gui/locales/AdvancedSettingsDialog_de.properties
similarity index 99%
rename from src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_ca.properties
rename to src/com/jpexs/decompiler/flash/gui/locales/AdvancedSettingsDialog_de.properties
index 62fda9f34..d077c06f0 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_ca.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/AdvancedSettingsDialog_de.properties
@@ -12,4 +12,3 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
-
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_de.properties b/src/com/jpexs/decompiler/flash/gui/locales/AdvancedSettingsDialog_pt.properties
similarity index 99%
rename from src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_de.properties
rename to src/com/jpexs/decompiler/flash/gui/locales/AdvancedSettingsDialog_pt.properties
index 62fda9f34..d077c06f0 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_de.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/AdvancedSettingsDialog_pt.properties
@@ -12,4 +12,3 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
-
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_es.properties b/src/com/jpexs/decompiler/flash/gui/locales/AdvancedSettingsDialog_zh.properties
similarity index 99%
rename from src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_es.properties
rename to src/com/jpexs/decompiler/flash/gui/locales/AdvancedSettingsDialog_zh.properties
index 62fda9f34..d077c06f0 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_es.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/AdvancedSettingsDialog_zh.properties
@@ -12,4 +12,3 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
-
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog.properties
index 92bb420ea..8296db4cb 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog.properties
@@ -16,4 +16,4 @@
dialog.title = Debugger Log
button.clear = Clear
button.close = Close
-msg.header = connection %clientid%:
\ No newline at end of file
+msg.header = connection %clientid%:
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_fr.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_ca.properties
similarity index 99%
rename from src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_fr.properties
rename to src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_ca.properties
index 62fda9f34..d077c06f0 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_fr.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_ca.properties
@@ -12,4 +12,3 @@
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
-
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_cs.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_cs.properties
index f2316072a..8cb0923d3 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_cs.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_cs.properties
@@ -16,4 +16,4 @@
dialog.title = Log Debuggeru
button.clear = Vypr\u00e1zdnit
button.close = Zav\u0159\u00edt
-msg.header = spojen\u00ed %clientid%:
\ No newline at end of file
+msg.header = spojen\u00ed %clientid%:
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_de.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_de.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_de.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_es.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_es.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_es.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_fr.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_fr.properties
index 8ccdbff20..a5cf2ad08 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_fr.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_fr.properties
@@ -16,4 +16,4 @@
dialog.title = Journal du d\u00e9boggueur
button.clear = Effacer
button.close = Fermer
-msg.header = connection %clientid%:
\ No newline at end of file
+msg.header = connection %clientid%:
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_hu.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_hu.properties
new file mode 100644
index 000000000..a97b64b25
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_hu.properties
@@ -0,0 +1,19 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+
+dialog.title = Debugger Log
+button.clear = T\u00f6r\u00f6l
+button.close = Bez\u00e1r
+msg.header = kapcsolat %clientid%:
\ No newline at end of file
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_nl.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_nl.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_nl.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_pl.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_pl.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_pl.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_pt.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_pt.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_pt.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_pt_BR.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_pt_BR.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_pt_BR.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_ru.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_ru.properties
index 7ea99ce49..5b701e711 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_ru.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_ru.properties
@@ -16,4 +16,4 @@
dialog.title = \u041b\u043e\u0433 \u043e\u0442\u043b\u0430\u0434\u0447\u0438\u043a\u0430
button.clear = \u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c
button.close = \u0417\u0430\u043a\u0440\u044b\u0442\u044c
-msg.header = \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 %clientid%:
\ No newline at end of file
+msg.header = \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 %clientid%:
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_sv.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_sv.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_sv.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_uk.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_uk.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_uk.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_zh.properties b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_zh.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/DebugLogDialog_zh.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_ca.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_ca.properties
index 1b6062752..be6dd68c3 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_ca.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_ca.properties
@@ -15,6 +15,7 @@
shapes = Formes
shapes.svg = SVG
shapes.png = PNG
+shapes.bmp = BMP
shapes.canvas = Tela HTML5
texts = Texts
@@ -62,6 +63,7 @@ frames.avi = AVI
frames.svg = SVG
frames.canvas = Tela HTML5
frames.pdf = PDF
+frames.bmp = BMP
fonts = Tipografies
fonts.ttf = TTF
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_cs.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_cs.properties
index eab8a004d..9da7689ec 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_cs.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_cs.properties
@@ -15,6 +15,7 @@
shapes = Tvary
shapes.svg = SVG
shapes.png = PNG
+shapes.bmp = BMP
shapes.canvas = HTML5 Canvas
texts = Texty
@@ -26,6 +27,7 @@ images = Obr\u00e1zky
images.png_jpeg = PNG/JPEG
images.png = PNG
images.jpeg = JPEG
+images.bmp = BMP
movies = Videa
movies.flv = FLV (bez zvuku)
@@ -62,6 +64,7 @@ frames.avi = AVI
frames.svg = SVG
frames.canvas = HTML5 Canvas
frames.pdf = PDF
+frames.bmp = BMP
fonts = P\u00edsma
fonts.ttf = TTF
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_de.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_de.properties
index 533adede1..fc08485ed 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_de.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_de.properties
@@ -14,6 +14,8 @@
# along with this program. If not, see .
shapes = Formen
shapes.svg = SVG
+shapes.png = PNG
+shapes.bmp = BMP
texts = Texte
texts.plain = Klartext
@@ -21,6 +23,9 @@ texts.formatted = Formatierter Text
images = Bilder
images.png_jpeg = PNG/JPEG
+images.png = PNG
+images.jpeg = JPEG
+images.bmp = BMP
movies = Movies
movies.flv = FLV (Keine Ger\u00e4usche)
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_es.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_es.properties
index 29ae6adc7..3417cab0c 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_es.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_es.properties
@@ -14,6 +14,8 @@
# along with this program. If not, see .
shapes = Formas
shapes.svg = SVG
+shapes.png = PNG
+shapes.bmp = BMP
texts = Textos
texts.plain = Texto plano
@@ -21,6 +23,9 @@ texts.formatted = Texto formateado
images = Im\u00e1genes
images.png_jpeg = PNG/JPEG
+images.png = PNG
+images.jpeg = JPEG
+images.bmp = BMP
movies = Pel\u00edculas
movies.flv = FLV (No audio)
@@ -49,12 +54,15 @@ movies = Movies
movies.flv = FLV (Sin audio)
sounds.mp3_wav = MP3/WAV
sounds.wav = WAV
+
binaryData = Datos binarios
binaryData.raw = Crudo
+
morphshapes = Morphshapes
morphshapes.gif = GIF
morphshapes.svg = SVG
morphshapes.canvas = HTML5 Canvas
+
frames = Marcos
frames.png = PNG
frames.gif = GIF
@@ -62,10 +70,12 @@ frames.avi = AVI
frames.svg = SVG
frames.canvas = HTML5 Canvas
frames.pdf = PDF
+frames.bmp = BMP
+
fonts = Fonts
fonts.ttf = TTF
fonts.woff = WOFF
zoom = Ampliar
zoom.percent = %
-zoom.invalid = Valor inv\u00e1lido para ampliar.
\ No newline at end of file
+zoom.invalid = Valor inv\u00e1lido para ampliar.
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_hu.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_hu.properties
index 6aadcfbbc..aec23757b 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_hu.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_hu.properties
@@ -15,6 +15,7 @@
shapes = Alakzatok
shapes.svg = SVG
shapes.png = PNG
+shapes.bmp = BMP
shapes.canvas = HTML5 V\u00e1szon
texts = Sz\u00f6vegek
@@ -26,6 +27,7 @@ images = K\u00e9pek
images.png_jpeg = PNG/JPEG
images.png = PNG
images.jpeg = JPEG
+images.bmp = BMP
movies = Mozg\u00f3k\u00e9pek
movies.flv = FLV (Hang n\u00e9lk\u00fcl)
@@ -62,6 +64,7 @@ frames.avi = AVI
frames.svg = SVG
frames.canvas = HTML5 V\u00e1szon
frames.pdf = PDF
+frames.bmp = BMP
fonts = Bet\u0171t\u00edpusok
fonts.ttf = TTF
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_nl.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_nl.properties
index 4e300e92e..bbeefc090 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_nl.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_nl.properties
@@ -14,6 +14,8 @@
# along with this program. If not, see .
shapes = Vormen
shapes.svg = SVG
+shapes.png = PNG
+shapes.bmp = BMP
texts = Teksten
texts.plain = Platte tekst
@@ -21,6 +23,9 @@ texts.formatted = Geformatteerde tekst
images = Images
images.png_jpeg = PNG/JPEG
+images.png = PNG
+images.jpeg = JPEG
+images.bmp = BMP
movies = Films
movies.flv = FLV (Geen audio)
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pl.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pl.properties
index de78aeaa8..1962f6922 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pl.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pl.properties
@@ -15,6 +15,7 @@
shapes = Kszta\u0142ty
shapes.svg = SVG
shapes.png = PNG
+shapes.bmp = BMP
shapes.canvas = HTML5 Canvas
texts = Teksty
@@ -26,6 +27,7 @@ images = Obrazy
images.png_jpeg = PNG/JPEG
images.png = PNG
images.jpeg = JPEG
+images.bmp = BMP
movies = Filmy
movies.flv = FLV (Bez d\u017awi\u0119ku)
@@ -62,6 +64,7 @@ frames.avi = AVI
frames.svg = SVG
frames.canvas = HTML5 Canvas
frames.pdf = PDF
+frames.bmp = BMP
fonts = Czcionki
fonts.ttf = TTF
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pt.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pt.properties
index 2bc67e4cb..8b3c73fa5 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pt.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pt.properties
@@ -14,6 +14,8 @@
# along with this program. If not, see .
shapes = Formas
shapes.svg = SVG
+shapes.png = PNG
+shapes.bmp = BMP
texts = Textos
texts.plain = Texto simples
@@ -21,6 +23,9 @@ texts.formatted = Texto Formatador
images = Imagens
images.png_jpeg = PNG/JPEG
+images.png = PNG
+images.jpeg = JPEG
+images.bmp = BMP
movies = Filmes
movies.flv = FLV (No audio)
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pt_BR.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pt_BR.properties
index 6822ae3b6..655b10b08 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pt_BR.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_pt_BR.properties
@@ -14,6 +14,8 @@
# along with this program. If not, see .
shapes = Formas
shapes.svg = SVG
+shapes.png = PNG
+shapes.bmp = BMP
texts = Textos
texts.plain = Texto simples
@@ -21,6 +23,9 @@ texts.formatted = Texto Formatador
images = Imagens
images.png_jpeg = PNG/JPEG
+images.png = PNG
+images.jpeg = JPEG
+images.bmp = BMP
movies = Filmes
movies.flv = FLV (Sem som)
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_ru.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_ru.properties
index 0e5d55832..ad399cc3d 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_ru.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_ru.properties
@@ -15,6 +15,7 @@
shapes = \u0424\u043e\u0440\u043c\u044b
shapes.svg = SVG
shapes.png = PNG
+shapes.bmp = BMP
shapes.canvas = \u041a\u0430\u043d\u0432\u0430\u0441 HTML5
texts = \u0422\u0435\u043a\u0441\u0442\u044b
@@ -26,6 +27,7 @@ images = \u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f
images.png_jpeg = PNG/JPEG
images.png = PNG
images.jpeg = JPEG
+images.bmp = BMP
movies = \u0412\u0438\u0434\u0435\u043e
movies.flv = FLV (\u0411\u0435\u0437 \u0437\u0432\u0443\u043a\u0430)
@@ -62,6 +64,7 @@ frames.avi = AVI
frames.svg = SVG
frames.canvas = \u041a\u0430\u043d\u0432\u0430\u0441 HTML5
frames.pdf = PDF
+frames.bmp = BMP
fonts = \u0428\u0440\u0438\u0444\u0442\u044b
fonts.ttf = TTF
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_sv.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_sv.properties
index 1cbcb3c9b..2f917be33 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_sv.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_sv.properties
@@ -14,6 +14,8 @@
# along with this program. If not, see .
shapes = Former
shapes.svg = SVG
+shapes.png = PNG
+shapes.bmp = BMP
texts = Texter
texts.plain = Oformaterad text
@@ -21,6 +23,9 @@ texts.formatted = Formaterad text
images = Bilder
images.png_jpeg = PNG/JPEG
+images.png = PNG
+images.jpeg = JPEG
+images.bmp = BMP
movies = Filmer
movies.flv = FLV (Inget Ljud)
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_uk.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_uk.properties
index f72c21699..56291269c 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_uk.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_uk.properties
@@ -14,6 +14,8 @@
# along with this program. If not, see .
shapes = \u0424\u043e\u0440\u043c\u0438
shapes.svg = SVG
+shapes.png = PNG
+shapes.bmp = BMP
texts = \u0422\u0435\u043a\u0441\u0442\u0438
texts.plain = \u0417\u0432\u0438\u0447\u0430\u0439\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442
@@ -21,6 +23,9 @@ texts.formatted = \u0424\u043e\u0440\u043c\u0430\u0442\u043e\u0432\u0430\u043d\u
images = \u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f
images.png_jpeg = PNG/JPEG
+images.png = PNG
+images.jpeg = JPEG
+images.bmp = BMP
movies = \u0412\u0456\u0434\u0435\u043e
movies.flv = FLV (\u0411\u0435\u0437 \u0437\u0432\u0443\u043a\u0443)
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_zh.properties b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_zh.properties
index 7d239aa60..aea7b2ae3 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_zh.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ExportDialog_zh.properties
@@ -14,6 +14,8 @@
# along with this program. If not, see .
shapes = \u56fe\u5f62
shapes.svg = SVG
+shapes.png = PNG
+shapes.bmp = BMP
texts = \u6587\u672c
texts.plain = \u7eaf\u6587\u672c
@@ -21,6 +23,9 @@ texts.formatted = \u683c\u5f0f\u5316\u7684\u6587\u672c
images = \u56fe\u7247
images.png_jpeg = PNG/JPEG
+images.png = PNG
+images.jpeg = JPEG
+images.bmp = BMP
movies = \u5f71\u7247
movies.flv = FLV (\u65e0\u97f3\u9891)
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/FontEmbedDialog_fr.properties b/src/com/jpexs/decompiler/flash/gui/locales/FontEmbedDialog_fr.properties
index 7e3f9bca9..3dd01c1cc 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/FontEmbedDialog_fr.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/FontEmbedDialog_fr.properties
@@ -16,7 +16,7 @@
range.description = %name% (%available% sur %total% caract\u00e8res)
dialog.title = Police incorpor\u00e9e
label.individual = Caract\u00e8re personnalis\u00e9:
-button.loadfont = Charger les polices de caract\u0e8res \u00e0 partir du disque...
+button.loadfont = Charger les polices de caract\u00e8res \u00e0 partir du disque...
filter.ttf = Fichier de police True Type (*.ttf)
error.invalidfontfile = Fichier de police invalide
error.cannotreadfontfile = Impossible de lire le fichier de police
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/FontEmbedDialog_pt.properties b/src/com/jpexs/decompiler/flash/gui/locales/FontEmbedDialog_pt.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/FontEmbedDialog_pt.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/FontPreviewDialog_de.properties b/src/com/jpexs/decompiler/flash/gui/locales/FontPreviewDialog_de.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/FontPreviewDialog_de.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/FontPreviewDialog_pt.properties b/src/com/jpexs/decompiler/flash/gui/locales/FontPreviewDialog_pt.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/FontPreviewDialog_pt.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/FontPreviewDialog_zh.properties b/src/com/jpexs/decompiler/flash/gui/locales/FontPreviewDialog_zh.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/FontPreviewDialog_zh.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_pl.properties b/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_pl.properties
deleted file mode 100644
index 62fda9f34..000000000
--- a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_pl.properties
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright (C) 2010-2015 JPEXS
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_pt.properties b/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_pt.properties
deleted file mode 100644
index 62fda9f34..000000000
--- a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_pt.properties
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright (C) 2010-2015 JPEXS
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_pt_BR.properties b/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_pt_BR.properties
deleted file mode 100644
index 62fda9f34..000000000
--- a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_pt_BR.properties
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright (C) 2010-2015 JPEXS
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_zh.properties b/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_zh.properties
deleted file mode 100644
index 62fda9f34..000000000
--- a/src/com/jpexs/decompiler/flash/gui/locales/GraphTreeFrame_zh.properties
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright (C) 2010-2015 JPEXS
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/LoadFromCacheFrame_pt.properties b/src/com/jpexs/decompiler/flash/gui/locales/LoadFromCacheFrame_pt.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/LoadFromCacheFrame_pt.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog.properties
index 80ad50742..389c919ad 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog.properties
@@ -17,4 +17,4 @@ dialog.title = Replace Trace function calls
function.debugAlert = debugAlert - web browser javascript alert
function.debugConsole = debugConsole - web browser javascript console.log
-function.debugSocket = debugSocket - socket connection to the decompiler
\ No newline at end of file
+function.debugSocket = debugSocket - socket connection to the decompiler
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_ca.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_ca.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_ca.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_cs.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_cs.properties
index 52b3d2e21..d08bb54ac 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_cs.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_cs.properties
@@ -17,4 +17,4 @@ dialog.title = Nahrazen\u00ed vol\u00e1n\u00ed funkce Trace
function.debugAlert = debugAlert - javascriptov\u00e1 funkce alert webov\u00e9ho prohl\u00ed\u017ee\u010de
function.debugConsole = debugConsole - javascriptov\u00e1 funkce console.log webov\u00e9ho prohl\u00ed\u017ee\u010de
-function.debugSocket = debugSocket - p\u0159ipojen\u00ed sockety k dekompil\u00e1toru
\ No newline at end of file
+function.debugSocket = debugSocket - p\u0159ipojen\u00ed sockety k dekompil\u00e1toru
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_de.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_de.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_de.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_es.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_es.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_es.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_fr.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_fr.properties
index 8c98215da..31ec93546 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_fr.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_fr.properties
@@ -17,4 +17,4 @@ dialog.title = Remplacer les appels de fonction Trace
function.debugAlert = debugAlert - Alerte du navigateur web Javascript
function.debugConsole = debugConsole - Navigateur Web javascript console.log
-function.debugSocket = debugSocket - socket de connection vers le d\u00e9compileur
\ No newline at end of file
+function.debugSocket = debugSocket - socket de connection vers le d\u00e9compileur
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_hu.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_hu.properties
new file mode 100644
index 000000000..9559b1cc4
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_hu.properties
@@ -0,0 +1,20 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
+
+dialog.title = Trace f\u00fcggv\u00e9ny h\u00edv\u00e1sok cser\u00e9je
+
+function.debugAlert = debugAlert - web b\u00f6ng\u00e9sz\u0151 javascript alert
+function.debugConsole = debugConsole - web b\u00f6ngsz\u0151 javascript console.log
+function.debugSocket = debugSocket - socket kapcsolat a decompilerhez
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_nl.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_nl.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_nl.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_pl.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_pl.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_pl.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_pt.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_pt.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_pt.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_pt_BR.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_pt_BR.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_pt_BR.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_ru.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_ru.properties
index e6820eccf..67a88b317 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_ru.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_ru.properties
@@ -17,4 +17,4 @@ dialog.title = \u0417\u0430\u043c\u0435\u043d\u0430 \u0432\u044b\u0437\u043e\u04
function.debugAlert = debugAlert - javascript \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435 \u0432 web-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435
function.debugConsole = debugConsole - javascript console.log \u0432 web-\u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435
-function.debugSocket = debugSocket - \u0441\u043e\u043a\u0435\u0442\u043d\u043e\u0435 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0441 \u0434\u0435\u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0442\u043e\u0440\u043e\u043c
\ No newline at end of file
+function.debugSocket = debugSocket - \u0441\u043e\u043a\u0435\u0442\u043d\u043e\u0435 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0441 \u0434\u0435\u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0442\u043e\u0440\u043e\u043c
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_sv.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_sv.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_sv.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_uk.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_uk.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_uk.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_zh.properties b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_zh.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/ReplaceTraceDialog_zh.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_de.properties b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_de.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_de.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_nl.properties b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_nl.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_nl.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_pt.properties b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_pt.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_pt.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_pt_BR.properties b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_pt_BR.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_pt_BR.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_uk.properties b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_uk.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_uk.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_zh.properties b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_zh.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/SearchResultsDialog_zh.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/abc/NewTraitDialog_pt.properties b/src/com/jpexs/decompiler/flash/gui/locales/abc/NewTraitDialog_pt.properties
new file mode 100644
index 000000000..d077c06f0
--- /dev/null
+++ b/src/com/jpexs/decompiler/flash/gui/locales/abc/NewTraitDialog_pt.properties
@@ -0,0 +1,14 @@
+# Copyright (C) 2010-2015 JPEXS
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see .
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame.properties b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame.properties
index 95c9f7b6c..1138f883b 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame.properties
@@ -32,4 +32,4 @@ error.replace = Cannot replace data
error.start.server = Cannot start server on port %port%. Please check if port is not blocked by other application.
column.accessed = Accessed
column.size = Size
-column.url = URL
\ No newline at end of file
+column.url = URL
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_cs.properties b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_cs.properties
index 788134052..66c522d68 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_cs.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_cs.properties
@@ -32,4 +32,4 @@ error.replace = Nelze nahradit data
error.start.server = Nelze spustit server na portu %port%. Pros\u00edm zkontroljte zda port nen\u00ed blokov\u00e1n jinou aplikac\u00ed.
column.accessed = P\u0159\u00edstup
column.size = Velikost
-column.url = URL
\ No newline at end of file
+column.url = URL
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_de.properties b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_de.properties
index 79a6c3d74..5bf4901ae 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_de.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_de.properties
@@ -23,4 +23,4 @@ remove = Entfernen
sniff = Suchen:
dialog.title = Proxy
error = Error
-error.port = Falsches Format f\u00fcr die Portnummer.
\ No newline at end of file
+error.port = Falsches Format f\u00fcr die Portnummer.
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_fr.properties b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_fr.properties
index bc594a831..1c4d5d0a0 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_fr.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_fr.properties
@@ -32,4 +32,4 @@ error.replace = Impossible de remplacer les donn\u00e9es
error.start.server = Impossible de d\u00e9marrer le serveur sur le port %port%. Veuillez v\u00e9rifier que ce port ne soit pas bloqu\u00e9 par une autre application.
column.accessed = Acc\u00e9d\u00e9
column.size = Taille
-column.url = URL
\ No newline at end of file
+column.url = URL
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_hu.properties b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_hu.properties
index aeaf5e37d..889474dd7 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_hu.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_hu.properties
@@ -24,3 +24,12 @@ sniff = Sniff:
dialog.title = Proxy
error = Hiba
error.port = Hib\u00e1s portsz\u00e1m form\u00e1tum.
+copy.url = URL m\u00e1sol\u00e1sa
+save.as = Ment\u00e9s m\u00e9sk\u00e9nt...
+replace = Csere...
+error.save.as = Nem lehet menteni a f\u00e1jlt
+error.replace = Nem lehet cser\u00e9lni az adatot
+error.start.server = Nem tudom elind\u00edtani a kiszolg\u00e1l\u00f3t a %port% sz\u00e1m\u00fa porton. K\u00e9rem ellen\u0151rizze, hogy blokkolja-e az adaott portot egy m\u00e1sik program.
+column.accessed = Hozz\u00e1f\u00e9rve
+column.size = M\u00e9ret
+column.url = URL
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_ru.properties b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_ru.properties
index 79b940135..a5bcb2a02 100644
--- a/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_ru.properties
+++ b/src/com/jpexs/decompiler/flash/gui/locales/proxy/ProxyFrame_ru.properties
@@ -32,4 +32,4 @@ error.replace = \u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0
error.start.server = \u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440 \u043d\u0430 \u043f\u043e\u0440\u0442\u0443 %port%. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u043f\u043e\u0440\u0442 \u043d\u0435 \u0437\u0430\u043d\u044f\u0442 \u0434\u0440\u0443\u0433\u0438\u043c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c.
column.accessed = \u0414\u043e\u0441\u0442\u0443\u043f
column.size = \u0420\u0430\u0437\u043c\u0435\u0440
-column.url = URL
\ No newline at end of file
+column.url = URL
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimeLineFrame_fr.properties b/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimeLineFrame_fr.properties
deleted file mode 100644
index 857075663..000000000
--- a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimeLineFrame_fr.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (C) 2010-2015 JPEXS
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
-dialog.title = Vue chronologique
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame.properties b/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame.properties
deleted file mode 100644
index 1a6d6f638..000000000
--- a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (C) 2010-2015 JPEXS
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
-dialog.title = Timeline view
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_ca.properties b/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_ca.properties
deleted file mode 100644
index 89cba813f..000000000
--- a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_ca.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (C) 2010-2015 JPEXS
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
-dialog.title = Vista de la cronologia
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_hu.properties b/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_hu.properties
deleted file mode 100644
index 3b41b96dc..000000000
--- a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_hu.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (C) 2010-2015 JPEXS
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
-dialog.title = Id\u0151vonal n\u00e9zet
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_pl.properties b/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_pl.properties
deleted file mode 100644
index 2caac46dd..000000000
--- a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_pl.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (C) 2010-2015 JPEXS
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
-dialog.title = Widok linii czasu
diff --git a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_pt_BR.properties b/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_pt_BR.properties
deleted file mode 100644
index e3b29206d..000000000
--- a/src/com/jpexs/decompiler/flash/gui/locales/timeline/TimelineFrame_pt_BR.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright (C) 2010-2015 JPEXS
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see .
-
-dialog.title = Ver linha do tempo