export fix

This commit is contained in:
2015-05-08 15:30:56 +02:00
parent c5a890fce7
commit 8369762567
5 changed files with 13 additions and 9 deletions
+8 -8
View File
@@ -337,22 +337,22 @@ public class Main {
swf.addEventListener(new EventListener() {
@Override
public void handleExportingEvent(String type, int index, int count, Object data) {
// todo honfika: localize
String text = "Exporting ";
String text = AppStrings.translate("work.exporting");
if (type != null && type.length() > 0) {
text += type + " ";
text += " " + type;
}
startWork(text + index + "/" + count + " " + data);
startWork(text + " " + index + "/" + count + " " + data);
}
@Override
public void handleExportedEvent(String type, int index, int count, Object data) {
// todo honfika: localize
String text = "Exported ";
String text = AppStrings.translate("work.exported");
if (type != null && type.length() > 0) {
text += type + " ";
text += " " + type;
}
startWork(text + index + "/" + count + " " + data);
startWork(text + " " + index + "/" + count + " " + data);
}
@Override