DO NOT REPLY [Bug 47127] New: Unable to change language to pl_PL

2009-04-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47127

   Summary: Unable to change language to pl_PL
   Product: JMeter
   Version: 2.3.2
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: normal
  Priority: P2
 Component: Main
AssignedTo: jmeter-dev@jakarta.apache.org
ReportedBy: kamil.ku...@ser-solutions.pl


Hi!

   I received an error while trying to run JMeter:
An error occurred: Unable to change language to pl_PL

The cause was in line 325 in class JMeterUtils:

resBund.getLocale().equals(loc)

resBund.getLocale()
 (java.util.Locale) pl
loc
 (java.util.Locale) pl_PL

I've modified it to have JMeter run in my language:

   from: resBund.getLocale().equals(loc)
   to:   resBund.getLocale().getLanguage().equals(loc.getLanguage())

   resBund.getLocale().getLanguage()
 (java.lang.String) pl

   loc.getLanguage()
 (java.lang.String) pl


Now it's equal, no exception is thrown, and I'm happy to see JMeter on my
screen. I don't know if it's the best solution of such problem. Maybe some
other way of comparing should be used? Something from java.util.Locale? Maybe
you'll have a better idea, something more elegant?

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



svn commit: r770139 - /jakarta/jmeter/trunk/src/core/org/apache/jmeter/engine/StandardJMeterEngine.java

2009-04-30 Thread sebb
Author: sebb
Date: Thu Apr 30 09:58:25 2009
New Revision: 770139

URL: http://svn.apache.org/viewvc?rev=770139view=rev
Log:
Allow for additional commands to be sent to background signal listener

Modified:

jakarta/jmeter/trunk/src/core/org/apache/jmeter/engine/StandardJMeterEngine.java

Modified: 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/engine/StandardJMeterEngine.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/core/org/apache/jmeter/engine/StandardJMeterEngine.java?rev=770139r1=770138r2=770139view=diff
==
--- 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/engine/StandardJMeterEngine.java
 (original)
+++ 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/engine/StandardJMeterEngine.java
 Thu Apr 30 09:58:25 2009
@@ -232,15 +232,12 @@
 log.info(Command: +command+ received from +address);
 if (command.equals(StopTestNow)){
 stopTest();
-break;
 } else if (command.equals(Shutdown)) {
 askThreadsToStop();
-break;
 } else {
 }
 }
 }
-socket.close();
 } catch (Exception e) {
 e.printStackTrace();
 } finally {



-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



DO NOT REPLY [Bug 47127] Unable to change language to pl_PL

2009-04-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47127


Sebb s...@apache.org changed:

   What|Removed |Added

 Status|NEW |NEEDINFO




--- Comment #1 from Sebb s...@apache.org  2009-04-30 03:39:03 PST ---
Why are you setting the Locale to pl_PL and not just pl?

Is that what your JVM is set to or have you defined the JMeter language
property?

Using pl works fine in the nightly builds.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



[Jakarta-jmeter Wiki] Update of JMeterUsers by kamilfuego

2009-04-30 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on Jakarta-jmeter Wiki 
for change notification.

The following page has been changed by kamilfuego:
http://wiki.apache.org/jakarta-jmeter/JMeterUsers

--
  ||[http://www.innopath.com Innopath Software]||USA||Use JMeter heavily for 
performance testing and for end to end testing.||
  ||Lufthansa Systems Indonesia||Indonesia||We use JMeter for performance 
testing. Currently we use it for testing our Frequent Flyer Program 
application.||
  ||[http://www.orbitz.com orbitz]||USA||We use JMeter for performance testing 
in our DEV  DEVQA servers.||
+ ||[http://www.ser-solutions.pl S.E.R. Solutions]||Germany||we use JMeter for 
performace tests of our DICOM server||
  ||SharpMind||Germany||we use JMeter for load, functional and regression 
testing of client-server applications||
  ||[http://www.talis.com Talis]||England||We are using it to performance test 
our new Talis Engage system.||
  ||University of Western Cape||South Africa||We are using JMeter to test our 
in-house written E-Learning application.||

-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



DO NOT REPLY [Bug 47127] Unable to change language to pl_PL

2009-04-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47127


kamil kamil.ku...@ser-solutions.pl changed:

   What|Removed |Added

 Status|NEEDINFO|NEW




--- Comment #2 from kamil kamil.ku...@ser-solutions.pl  2009-04-30 04:37:42 
PST ---
Hi Sebb,

   I'm selecting current locale in Start  Control Panel   Regional Settings 
first tab: Regional Options (and Advanced). I'm not passing JVM options
-Duser.language=pl -Duser.region=PL to alter default (polish) locale, which
I've set in 

   What variable isDefault actually stores is information 'isEnglish' (check
line #308). That may puzzle a bit.

   I've checked three computers (two Windows XP PL and one Windows 2000 Server
PL) and Locale.getDefault() returns: Default locale: pl_PL.

Cordially,
Kamil



// Code used to check for default locale
import java.util.Locale;

public class PrintLoc {
public static void main(String[] args) {
System.out.println(Default locale:  + Locale.getDefault());
}
}

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



DO NOT REPLY [Bug 47127] Unable to change language to pl_PL

2009-04-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47127


Sebb s...@apache.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #4 from Sebb s...@apache.org  2009-04-30 04:51:44 PST ---
OK, I see.

What I have done is to add a further check.

If the Locales don't match exactly, then check if they match when getLanguage()
is used. If so, log a warning (because the requested Locale was not available)
but continue.

This corresponds better with the behaviour of Resource.getBundle().

See:

URL: http://svn.apache.org/viewvc?rev=770174view=rev
Log:
Bug 47127 -  Unable to change language to pl_PL

This will be in the nightlies from version r770174 ( 
https://svn.apache.org/viewcvs.cgi?view=revrev=770174 )

Thanks for the report.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



svn commit: r770174 - in /jakarta/jmeter/trunk: src/core/org/apache/jmeter/util/JMeterUtils.java xdocs/changes.xml

2009-04-30 Thread sebb
Author: sebb
Date: Thu Apr 30 11:48:48 2009
New Revision: 770174

URL: http://svn.apache.org/viewvc?rev=770174view=rev
Log:
Bug 47127 -  Unable to change language to pl_PL

Modified:
jakarta/jmeter/trunk/src/core/org/apache/jmeter/util/JMeterUtils.java
jakarta/jmeter/trunk/xdocs/changes.xml

Modified: jakarta/jmeter/trunk/src/core/org/apache/jmeter/util/JMeterUtils.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/core/org/apache/jmeter/util/JMeterUtils.java?rev=770174r1=770173r2=770174view=diff
==
--- jakarta/jmeter/trunk/src/core/org/apache/jmeter/util/JMeterUtils.java 
(original)
+++ jakarta/jmeter/trunk/src/core/org/apache/jmeter/util/JMeterUtils.java Thu 
Apr 30 11:48:48 2009
@@ -324,7 +324,12 @@
 ResourceBundle resBund = 
ResourceBundle.getBundle(org.apache.jmeter.resources.messages, loc); // 
$NON-NLS-1$
 if (isDefault || resBund.getLocale().equals(loc)) {// language 
change worked
 resources = resBund;
-locale = loc;
+locale = loc;
+// Check if we at least found the correct language:
+} else if 
(resBund.getLocale().getLanguage().equals(loc.getLanguage())) {
+log.warn(Unable to change language to '+loc.toString()+', 
using '+loc.getLanguage()+');
+resources = resBund;
+locale = loc;
 } else {
 log.error(Unable to change language to +loc.toString());
 throw new JMeterError(Unable to change language to 
+loc.toString());

Modified: jakarta/jmeter/trunk/xdocs/changes.xml
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/xdocs/changes.xml?rev=770174r1=770173r2=770174view=diff
==
--- jakarta/jmeter/trunk/xdocs/changes.xml (original)
+++ jakarta/jmeter/trunk/xdocs/changes.xml Thu Apr 30 11:48:48 2009
@@ -206,6 +206,7 @@
 liAvoid NPE if XPath function does not match any nodes/li
 liFix processing of Transaction Sampler parent mode so current sampler is 
set to actual sampler/li
 liFix processing of first file name in HTTP POST so functions/variables work 
(bug introduced with multiple file support)/li
+liBug 47127 -  Unable to change language to pl_PL/li
 /ul
 
 h3Improvements/h3



-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



DO NOT REPLY [Bug 46900] i18N: polish property file

2009-04-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46900


kamil kamil.ku...@ser-solutions.pl changed:

   What|Removed |Added

  Attachment #23478|0   |1
is obsolete||




--- Comment #7 from kamil kamil.ku...@ser-solutions.pl  2009-04-30 05:09:16 
PST ---
Created an attachment (id=23566)
 -- (https://issues.apache.org/bugzilla/attachment.cgi?id=23566)
Slightly enhanced polish property file

More resource strings translated

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



DO NOT REPLY [Bug 46900] i18N: polish property file

2009-04-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46900


kamil kamil.ku...@ser-solutions.pl changed:

   What|Removed |Added

  Attachment #23566|Slightly enhanced polish|Slightly enhanced polish
description|property file   |property file (just one
   ||file)




-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



svn commit: r770184 - in /jakarta/jmeter/trunk/docs/images/screenshots: http-config/http-request-defaults.png webtest/http-request.png

2009-04-30 Thread sebb
Author: sebb
Date: Thu Apr 30 12:12:05 2009
New Revision: 770184

URL: http://svn.apache.org/viewvc?rev=770184view=rev
Log:
Screenshot updates

Modified:

jakarta/jmeter/trunk/docs/images/screenshots/http-config/http-request-defaults.png
jakarta/jmeter/trunk/docs/images/screenshots/webtest/http-request.png

Modified: 
jakarta/jmeter/trunk/docs/images/screenshots/http-config/http-request-defaults.png
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/docs/images/screenshots/http-config/http-request-defaults.png?rev=770184r1=770183r2=770184view=diff
==
Binary files - no diff available.

Modified: jakarta/jmeter/trunk/docs/images/screenshots/webtest/http-request.png
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/docs/images/screenshots/webtest/http-request.png?rev=770184r1=770183r2=770184view=diff
==
Binary files - no diff available.



-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



svn commit: r770185 - /jakarta/jmeter/trunk/xdocs/usermanual/component_reference.xml

2009-04-30 Thread sebb
Author: sebb
Date: Thu Apr 30 12:12:42 2009
New Revision: 770185

URL: http://svn.apache.org/viewvc?rev=770185view=rev
Log:
Document how to use RE PP default value

Modified:
jakarta/jmeter/trunk/xdocs/usermanual/component_reference.xml

Modified: jakarta/jmeter/trunk/xdocs/usermanual/component_reference.xml
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/xdocs/usermanual/component_reference.xml?rev=770185r1=770184r2=770185view=diff
==
--- jakarta/jmeter/trunk/xdocs/usermanual/component_reference.xml (original)
+++ jakarta/jmeter/trunk/xdocs/usermanual/component_reference.xml Thu Apr 30 
12:12:42 2009
@@ -3839,8 +3839,16 @@
li Negative numbers are used in conjunction with the 
ForEach controller - see below./li
/ul
 /property
-property name=Default Value required=No
-If no matches are found - and a default is provided - the default 
value is stored in the variable.
+property name=Default Value required=No, but recommended
+If the regular expression does not match, then the reference variable 
will be set to the default value.
+This is particularly useful for debugging tests. If no default is 
provided, then it is difficult to tell
+whether the regular expression did not match, or the RE element was 
not processed or maybe the wrong variable
+is being used.
+p
+However, if you have several test elements that set the same variable, 
+you may wish to leave the variable unchanged if the expression does 
not match.
+In this case, remove the default value once debugging is complete.
+/p 
 /property
 /properties
 p



-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



DO NOT REPLY [Bug 47127] Unable to change language to pl_PL

2009-04-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47127


kamil kamil.ku...@ser-solutions.pl changed:

   What|Removed |Added

   Severity|normal  |minor




--- Comment #3 from kamil kamil.ku...@ser-solutions.pl  2009-04-30 04:48:56 
PST ---
I have this trouble only in Eclipse. When I've downloaded package from your
website and saved polish property file in proper place, it works fine.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



svn commit: r770202 - /jakarta/jmeter/trunk/src/core/org/apache/jmeter/resources/messages_pl.properties

2009-04-30 Thread sebb
Author: sebb
Date: Thu Apr 30 12:31:00 2009
New Revision: 770202

URL: http://svn.apache.org/viewvc?rev=770202view=rev
Log:
 Bug 46900 -  i18N: polish property file (2009-04-30 05:09 PST)
 Amended to remove invalid keys

Modified:

jakarta/jmeter/trunk/src/core/org/apache/jmeter/resources/messages_pl.properties

Modified: 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/resources/messages_pl.properties
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/core/org/apache/jmeter/resources/messages_pl.properties?rev=770202r1=770201r2=770202view=diff
==
--- 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/resources/messages_pl.properties
 (original)
+++ 
jakarta/jmeter/trunk/src/core/org/apache/jmeter/resources/messages_pl.properties
 Thu Apr 30 12:31:00 2009
@@ -20,129 +20,131 @@
 about=O programie Apache JMeter
 add=Dodaj
 add_as_child=Add as Child
-add_parameter=Add Variable
-add_pattern=Add Pattern:
-add_test=Add Test
-add_user=Add User
-add_value=Add Value
-addtest=Add test
-aggregate_graph=Statistical Graphs
-aggregate_graph_column=Column
-aggregate_graph_display=Display Graph
-aggregate_graph_height=Height
-aggregate_graph_max_length_xaxis_label=Max length of x-axis label
-aggregate_graph_ms=Milliseconds
-aggregate_graph_response_time=Response Time
-aggregate_graph_save=Save Graph
-aggregate_graph_save_table=Save Table Data
-aggregate_graph_save_table_header=Save Table Header
-aggregate_graph_title=Aggregate Graph
+add_parameter=Dodaj parametr
+add_pattern=Dodaj wzorzec:
+add_test=Dodaj test
+add_user=Dodaj u\u017Cytkownika
+add_value=Dodaj warto\u015B\u0107
+addtest=Dodaj test
+aggregate_graph=Wykresy statystyczne
+aggregate_graph_column=Kolumna
+aggregate_graph_display=Wy\u015Bwietl wykres
+aggregate_graph_height=Wysoko\u015B\u0107
+aggregate_graph_max_length_xaxis_label=Maksymalna wysoko\u015B\u0107 etykiety 
osi OX
+aggregate_graph_ms=Milisekund
+aggregate_graph_response_time=Czas odpowiedzi
+aggregate_graph_save=Zapisz wykres
+aggregate_graph_save_table=Zapisz dane z tabeli
+aggregate_graph_save_table_header=Zapisz nag\u0142\u00F3wek tabeli
+aggregate_graph_title=Wykres skumulowany
 aggregate_graph_use_group_name=Include group name in label?
-aggregate_graph_user_title=Title for Graph
-aggregate_graph_width=Width
-aggregate_report=Aggregate Report
+aggregate_graph_user_title=Tytu\u0142 wykresu
+aggregate_graph_width=Szeroko\u015B\u0107
+aggregate_report=Dane zagregowane
 aggregate_report_90=90%
-aggregate_report_90%_line=90% Line
-aggregate_report_bandwidth=KB/sec
-aggregate_report_count=# Samples
-aggregate_report_error=Error
-aggregate_report_error%=Error %
+aggregate_report_90%_line=Linia 90%
+aggregate_report_bandwidth=KB/sek
+aggregate_report_count=Liczba pr\u00F3bek
+aggregate_report_error=B\u0142\u0105d
+aggregate_report_error%=% b\u0142\u0119d\u00F3w
 aggregate_report_max=Max
-aggregate_report_median=Median
+aggregate_report_median=Mediana
 aggregate_report_min=Min
-aggregate_report_rate=Throughput
-aggregate_report_stddev=Std. Dev.
-aggregate_report_total_label=TOTAL
-als_message=Note: The Access Log Parser is generic in design and allows you to 
plugin
+aggregate_report_rate=Przepustowo\u015B\u0107
+aggregate_report_stddev=Odch. std.
+aggregate_report_total_label=RAZEM
+ajp_sampler_title=Pr\u00F3bnik AJP/1.3
+als_message=Uwaga: The Access Log Parser is generic in design and allows you 
to plugin
 als_message2=your own parser. To do so, implement the LogParser, add the jar 
to the
 als_message3=/lib directory and enter the class in the sampler.
-analyze=Analyze Data File...
-anchor_modifier_title=HTML Link Parser
+analyze=Analizuj plik z danymi...
+anchor_modifier_title=Parser link\u00F3w HTML
 appearance=Look and Feel
-argument_must_not_be_negative=The Argument must not be negative!
-assertion_assume_success=Ignore Status
-assertion_code_resp=Response Code
-assertion_contains=Contains
-assertion_equals=Equals
-assertion_headers=Response Headers
-assertion_matches=Matches
-assertion_message_resp=Response Message
-assertion_not=Not
+argument_must_not_be_negative=Parametr musi by\u0107 nieujemny!
+assertion_assume_success=Ignoruj status
+assertion_code_resp=Kod odpowiedzi
+assertion_contains=Zawiera
+assertion_equals=R\u00F3wna si\u0119
+assertion_headers=Nag\u0142\u00F3wki odpowiedzi
+assertion_matches=Pasuje do
+assertion_message_resp=Tre\u015B\u0107 odpowiedzi
+assertion_not=Nie
 assertion_pattern_match_rules=Pattern Matching Rules
 assertion_patterns_to_test=Patterns to Test
 assertion_resp_field=Response Field to Test
+assertion_scope=Kt\u00F3re pr\u00F3bki testowa\u0107
 assertion_substring=Substring
-assertion_text_resp=Text Response
-assertion_textarea_label=Assertions:
+assertion_text_resp=Tekst odpowiedzi
+assertion_textarea_label=Asercje:
 assertion_title=Response Assertion
 assertion_url_samp=URL Sampled
 assertion_visualizer_title=Assertion Results
-attribute=Attribute
-attrs=Attributes

DO NOT REPLY [Bug 46900] i18N: polish property file

2009-04-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46900





--- Comment #8 from Sebb s...@apache.org  2009-04-30 05:39:50 PST ---
Please don't add new keys to the property file:

Locale: pl has unexpected key: jp
Locale: pl has unexpected key: dicom_cmove_title
Locale: pl has unexpected key: dicom_cfind_title
Locale: pl has unexpected key: dicom_clear_database_title
Locale: pl has unexpected key: dicom_cstore_title
Locale: pl has unexpected key: jms_authentication
Locale: pl has unexpected key: dicom_gui_title
Locale: pl has unexpected key: jms_auth_not_required

Only keys that are present in the default messages.properties file are allowed.

The key jp should be ja, the other keys need to be removed.
I have done it this time, but future patches need to comply.

URL: http://svn.apache.org/viewvc?rev=770202view=rev
Log:
 Bug 46900 -  i18N: polish property file (2009-04-30 05:09 PST)
 Amended to remove invalid keys

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



Brazilian Portuguese Translation

2009-04-30 Thread Weslei A. de T. Marinho
Hello,
I would like to know if there are ongoing JMeter translations to Brazilian
Portuguese. I went trough
http://jakarta.apache.org/jmeter/localising/index.html to svn repository and
couldn't find bundles for brazilian portuguese.
If there are translations in progress, if possible, I would like to help...
Otherwise, I would like to work on it.

Thanks.

-- 
Weslei A. de T. Marinho


Re: Brazilian Portuguese Translation

2009-04-30 Thread sebb
On 30/04/2009, Weslei A. de T. Marinho wes...@gmail.com wrote:
 Hello,
  I would like to know if there are ongoing JMeter translations to Brazilian
  Portuguese. I went trough
  http://jakarta.apache.org/jmeter/localising/index.html to svn repository and
  couldn't find bundles for brazilian portuguese.
  If there are translations in progress, if possible, I would like to help...

There are none that I am aware of.

  Otherwise, I would like to work on it.

Thanks, that would be very useful.

Note that there are several properties files - the main file
messages.properties, and 17 or so smaller files with the name
*Resources.properties.

If you wish to proceed, please create a Bugzilla issue first and
attach any translated files to that.

If you do one of the smaller files first, we can check that everything
is OK before you do lots of work.

  Thanks.

  --

 Weslei A. de T. Marinho


-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



Re: Brazilian Portuguese Translation

2009-04-30 Thread Weslei A. de T. Marinho
Can somebody please kindly send me the files following the instructions
availble in http://jakarta.apache.org/jmeter/localising/index.html under
section Providing the current texts to translators?
Thanks in advance.

On Thu, Apr 30, 2009 at 2:51 PM, sebb seb...@gmail.com wrote:

 On 30/04/2009, Weslei A. de T. Marinho wes...@gmail.com wrote:
  Hello,
   I would like to know if there are ongoing JMeter translations to
 Brazilian
   Portuguese. I went trough
   http://jakarta.apache.org/jmeter/localising/index.html to svn
 repository and
   couldn't find bundles for brazilian portuguese.
   If there are translations in progress, if possible, I would like to
 help...

 There are none that I am aware of.

   Otherwise, I would like to work on it.

 Thanks, that would be very useful.

 Note that there are several properties files - the main file
 messages.properties, and 17 or so smaller files with the name
 *Resources.properties.

 If you wish to proceed, please create a Bugzilla issue first and
 attach any translated files to that.

 If you do one of the smaller files first, we can check that everything
 is OK before you do lots of work.

   Thanks.
 
   --
 
  Weslei A. de T. Marinho
 

 -
 To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
 For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org




-- 
Weslei A. de T. Marinho


Re: Brazilian Portuguese Translation

2009-04-30 Thread Rodrigo Madera
Boa garoto!A comunidade vai agradecer ;-)

On Thu, Apr 30, 2009 at 2:56 PM, Weslei A. de T. Marinho
wes...@gmail.comwrote:

 Can somebody please kindly send me the files following the instructions
 availble in http://jakarta.apache.org/jmeter/localising/index.html under
 section Providing the current texts to translators?
 Thanks in advance.

 On Thu, Apr 30, 2009 at 2:51 PM, sebb seb...@gmail.com wrote:

  On 30/04/2009, Weslei A. de T. Marinho wes...@gmail.com wrote:
   Hello,
I would like to know if there are ongoing JMeter translations to
  Brazilian
Portuguese. I went trough
http://jakarta.apache.org/jmeter/localising/index.html to svn
  repository and
couldn't find bundles for brazilian portuguese.
If there are translations in progress, if possible, I would like to
  help...
 
  There are none that I am aware of.
 
Otherwise, I would like to work on it.
 
  Thanks, that would be very useful.
 
  Note that there are several properties files - the main file
  messages.properties, and 17 or so smaller files with the name
  *Resources.properties.
 
  If you wish to proceed, please create a Bugzilla issue first and
  attach any translated files to that.
 
  If you do one of the smaller files first, we can check that everything
  is OK before you do lots of work.
 
Thanks.
  
--
  
   Weslei A. de T. Marinho
  
 
  -
  To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
  For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org
 
 


 --
 Weslei A. de T. Marinho



svn commit: r770389 - /jakarta/jmeter/trunk/build.xml

2009-04-30 Thread sebb
Author: sebb
Date: Thu Apr 30 18:49:23 2009
New Revision: 770389

URL: http://svn.apache.org/viewvc?rev=770389view=rev
Log:
Add target to create translator resource zip

Modified:
jakarta/jmeter/trunk/build.xml

Modified: jakarta/jmeter/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/build.xml?rev=770389r1=770388r2=770389view=diff
==
--- jakarta/jmeter/trunk/build.xml (original)
+++ jakarta/jmeter/trunk/build.xml Thu Apr 30 18:49:23 2009
@@ -1403,6 +1403,17 @@
 /zip
 /target
 
+   !-- Create a zip of all resource files for translators --
+   target name=pack-resources   
+   mkdir dir=${dist.dir}/
+   zip  zipfile=${dist.dir}/resources.zip
+ zipfileset dir=. defaultexcludes=yes
+   patternset includes=${src.dir}/**/*Resources.properties /
+patternset includes=${src.dir}/**/messages.properties /
+ /zipfileset
+   /zip
+   /target
+
 !-- 
 Utility target to create MD5 checksums in standard format (with *filename) 
 Usage:
@@ -1793,7 +1804,6 @@
   target name=junit  description=Run individual JUnit test
   mkdir dir=reports/
   property name=test.format value=brief/
-  property name=test.case1 value=org.apache.jmeter.junit.JMeterTest/
   property name=test.case value=org.apache.jorphan.test.AllTests/
   junit fork=true
dir=${basedir}/bin



-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



svn commit: r770499 - in /jakarta/jmeter/trunk: src/components/org/apache/jmeter/control/gui/ThroughputControllerGui.java xdocs/changes.xml

2009-04-30 Thread sebb
Author: sebb
Date: Fri May  1 00:31:28 2009
New Revision: 770499

URL: http://svn.apache.org/viewvc?rev=770499view=rev
Log:
 Bug 47120 -  Throughput Controller: change percent executions to total 
executions, the value is stored in a String and interpreted as 1 execution

Modified:

jakarta/jmeter/trunk/src/components/org/apache/jmeter/control/gui/ThroughputControllerGui.java
jakarta/jmeter/trunk/xdocs/changes.xml

Modified: 
jakarta/jmeter/trunk/src/components/org/apache/jmeter/control/gui/ThroughputControllerGui.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/components/org/apache/jmeter/control/gui/ThroughputControllerGui.java?rev=770499r1=770498r2=770499view=diff
==
--- 
jakarta/jmeter/trunk/src/components/org/apache/jmeter/control/gui/ThroughputControllerGui.java
 (original)
+++ 
jakarta/jmeter/trunk/src/components/org/apache/jmeter/control/gui/ThroughputControllerGui.java
 Fri May  1 00:31:28 2009
@@ -78,7 +78,8 @@
 try {
 ((ThroughputController) 
tc).setMaxThroughput(Integer.parseInt(throughput.getText().trim()));
 } catch (NumberFormatException e) {
-((ThroughputController) 
tc).setMaxThroughput(throughput.getText());
+// In case we are converting back from floating point, drop 
the decimal fraction
+((ThroughputController) 
tc).setMaxThroughput((throughput.getText().trim().split(\\.)[0])); // 
$NON-NLS-1$
 }
 } else {
 try {
@@ -103,10 +104,10 @@
 super.configure(el);
 if (((ThroughputController) el).getStyle() == 
ThroughputController.BYNUMBER) {
 styleBox.getModel().setSelectedItem(BYNUMBER_LABEL);
-throughput.setText(String.valueOf(((ThroughputController) 
el).getMaxThroughput()));
+throughput.setText(((ThroughputController) el).getMaxThroughput());
 } else {
 styleBox.setSelectedItem(BYPERCENT_LABEL);
-throughput.setText(String.valueOf(((ThroughputController) 
el).getPercentThroughput()));
+throughput.setText(((ThroughputController) 
el).getPercentThroughput());
 }
 perthread.setSelected(((ThroughputController) el).isPerThread());
 }

Modified: jakarta/jmeter/trunk/xdocs/changes.xml
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/xdocs/changes.xml?rev=770499r1=770498r2=770499view=diff
==
--- jakarta/jmeter/trunk/xdocs/changes.xml (original)
+++ jakarta/jmeter/trunk/xdocs/changes.xml Fri May  1 00:31:28 2009
@@ -207,6 +207,7 @@
 liFix processing of Transaction Sampler parent mode so current sampler is 
set to actual sampler/li
 liFix processing of first file name in HTTP POST so functions/variables work 
(bug introduced with multiple file support)/li
 liBug 47127 -  Unable to change language to pl_PL/li
+li Bug 47120 -  Throughput Controller: change percent executions to total 
executions, the value is stored in a String and interpreted as 1 execution/li
 /ul
 
 h3Improvements/h3



-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



DO NOT REPLY [Bug 47120] Throughput Controller: change percent executions to total executions, the value is stored in a String and interpreted as 1 execution

2009-04-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47120


Sebb s...@apache.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #2 from Sebb s...@apache.org  2009-04-30 18:29:23 PST ---
Thanks for the patch - good work!

URL: http://svn.apache.org/viewvc?rev=770499view=rev
Log:
 Bug 47120 -  Throughput Controller: change percent executions to total
executions, the value is stored in a String and interpreted as 1 execution

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



Graham Little is out of the office.

2009-04-30 Thread Graham_Little

I will be out of the office starting  01/05/2009 and will not return until
05/05/2009.

Please email SCEE PD SCERT ACWCE for urgent ACWCE issues.


**
This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed. If 
you have received this email in error please notify postmas...@scee.net
This footnote also confirms that this email message has been checked for all 
known viruses.
Sony Computer Entertainment Europe Limited
Registered Office: 10 Great Marlborough Street, London W1F 7LP, United Kingdom
Registered in England: 3277793
**


-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org



DO NOT REPLY [Bug 47132] New: Translated file for evaluation

2009-04-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=47132

   Summary: Translated file for evaluation
   Product: JMeter
   Version: unspecified
  Platform: PC
OS/Version: Windows XP
Status: NEW
  Severity: enhancement
  Priority: P2
 Component: Main
AssignedTo: jmeter-dev@jakarta.apache.org
ReportedBy: wes...@gmail.com


Hi, according to instructions received by email, I am attaching to this issue
an small property file translated to brazilian portuguese for evaluation. The
file is from package protocol.jdbc.org.apache.jmeter.protocol.jdbc.sampler.

Thanks.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: jmeter-dev-unsubscr...@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-h...@jakarta.apache.org