missing localizations

This commit is contained in:
Honfika
2014-01-18 13:27:42 +01:00
parent 088c8b8f96
commit 49d5470f93
9 changed files with 27 additions and 10 deletions
@@ -16,6 +16,7 @@
*/
package com.jpexs.decompiler.graph;
import com.jpexs.decompiler.flash.AppStrings;
import com.jpexs.decompiler.flash.helpers.GraphTextWriter;
import com.jpexs.decompiler.graph.model.LocalData;
@@ -34,7 +35,7 @@ public class MarkItem extends GraphTargetItem {
@Override
protected GraphTextWriter appendTo(GraphTextWriter writer, LocalData localData) {
return writer.append("//decompiler mark:" + mark);
return writer.append("//" + AppStrings.translate("decompilerMark") + ":" + mark);
}
public String getMark() {