Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[wb-dev] Patch for i18n

Hi,

We have changed WB to generate meaningful key names in the NLS module. So suppose the code is:

Label label1 = new Label(compostie,SWT.NONE);
label1.setText("Signon");

after NLS instead of:

label1.setText(getstring("label1"));

we generate (controlled by preferences)

label1.setText(getString("Signon"));

There is a lot more to it then this but the example explains the core idea.

Please let me know if you would consider accepting this patch. If so we will create the needed administration.

Cheers,

Wim


Back to the top