apache / jmeter

Apache JMeter open-source load testing tool for analyzing and measuring the performance of a variety of services
https://jmeter.apache.org/
Apache License 2.0
7.97k stars 2.02k forks source link

Minor i18n fix to TableDataModel #997

Closed asfimport closed 21 years ago

asfimport commented 21 years ago

Scott Eade (Bug 15471): Minor i18n fix to TableDataModel - patch attached.

Severity: minor OS: All

asfimport commented 21 years ago

Scott Eade (migrated from Bugzilla): Created attachment TableDataModel-patch.txt: Minor i18n fix to TableDataModel

TableDataModel-patch.txt ````diff Index: src/components/org/apache/jmeter/visualizers/TableDataModel.java =================================================================== RCS file: /home/cvspublic/jakarta-jmeter/src/components/org/apache/jmeter/visualizers/TableDataModel.java,v retrieving revision 1.6 diff -u -r1.6 TableDataModel.java --- src/components/org/apache/jmeter/visualizers/TableDataModel.java 5 Sep 2002 13:51:28 -0000 1.6 +++ src/components/org/apache/jmeter/visualizers/TableDataModel.java 18 Dec 2002 03:51:24 -0000 @@ -1,3 +1,5 @@ +package org.apache.jmeter.visualizers; + /* * ==================================================================== * The Apache Software License, Version 1.1 @@ -53,8 +55,6 @@ * . */ -package org.apache.jmeter.visualizers; - import java.util.ArrayList; import java.util.List; @@ -70,9 +70,9 @@ * This class implements the TableModel for the information kept * by the GraphModel. * - *@author Alf HogemarkHogemark - *@created March 10, 2002 - *@version 1.0 + * @author Alf HogemarkHogemark + * @created March 10, 2002 + * @version 1.0 */ public class TableDataModel extends GraphModel implements TableModel { @@ -111,7 +111,7 @@ */ public String getClassLabel() { - return "View Results in Table"; + return JMeterUtils.getResString("view_results_in_table"); } public Sample addNewSample(long time,long timeStamp,boolean success,String url) @@ -243,6 +243,7 @@ public void removeTableModelListener(TableModelListener l) { } + } ````
asfimport commented 21 years ago

Jordi Salvat i Alabart (migrated from Bugzilla): Applied Scott's patch. Marking as RESOLVED.

asfimport commented 21 years ago

Jordi Salvat i Alabart (migrated from Bugzilla): Bulk-editing to close all bugs reported fixed by 1.8.1.