[Title] modify dialog
authorheeyoung <heeyoung1008.hwang@samsung.com>
Tue, 25 Feb 2014 09:26:30 +0000 (18:26 +0900)
committerheeyoung <heeyoung1008.hwang@samsung.com>
Tue, 25 Feb 2014 09:26:30 +0000 (18:26 +0900)
[Desc.] modify the About/SaveAs dialog title
[Issue] -

Change-Id: Ida7de97660220ac7d2798b6dc24e3fda9e68fed6
Signed-off-by: heeyoung <heeyoung1008.hwang@samsung.com>
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/nl/AnalyzerLabels.java
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/nl/AnalyzerLabels.properties
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/toolbar/AboutDialog.java
org.tizen.dynamicanalyzer/src/org/tizen/dynamicanalyzer/ui/toolbar/SaveAsDialog.java

index d3db423..8e44c5c 100755 (executable)
@@ -49,6 +49,7 @@ public class AnalyzerLabels extends NLS {
        public static String START_TRACE;
        public static String STOP_TRACE;
        public static String SAVE_TRACE;
+       public static String SAVE_TRACE_TITLE;
        public static String OPEN_TRACE;
        public static String OPEN_TRACE_TITLE;
        public static String REPLAY;
index 09dbb90..05e0367 100755 (executable)
@@ -16,6 +16,7 @@ CLOSE=Close
 START_TRACE=Start trace [Ctrl + G]
 STOP_TRACE=Stop trace [Ctrl + G]
 SAVE_TRACE=Save trace [Ctrl + S]
+SAVE_TRACE_TITLE=Save trace
 OPEN_TRACE=Open trace [Ctrl + O]
 OPEN_TRACE_TITLE=Open trace
 REPLAY=Replay [Ctrl + P]
index a68a4b7..b7d2a9f 100644 (file)
@@ -103,7 +103,7 @@ public class AboutDialog extends DAMessageBox {
                }
                shell.setSize(446, 254);
                shell.setLayout(new FormLayout());
-               shell.setText(AnalyzerLabels.ABOUT);
+               shell.setText(AnalyzerLabels.ABOUT_TITLE);
                shell.addDisposeListener(new DisposeListener() {
 
                        @Override
index b346e91..4374dfb 100755 (executable)
@@ -76,6 +76,7 @@ public class SaveAsDialog extends DAMessageBox {
        protected boolean run() {
                shell.setLayout(new FormLayout());
                shell.setSize(446, 145 + 22);
+               shell.setText(AnalyzerLabels.SAVE_TRACE_TITLE);
                shell.setBackground(ColorResources.DIALOG_BG_UPPER);
 
                Label label = new Label(shell, SWT.TRANSPARENT);