I want to change text of button in org.eclipse.jface.wizard.Wizard
to arabic in button bar?
I mean I wanna change label "Next" button to "بعدی".
Asked
Active
Viewed 1,030 times
0

Baz
- 36,440
- 11
- 68
- 94

hasan safiary
- 57
- 1
- 11
1 Answers
2
The language of the Wizard
's labels is handled by JFace and uses your OS's region settings. That means if you're machine is set to "English (UK)" you will see the labels in English, if it's set to "Germany" you'll see them in German, etc.
There are related questions here:
Update:
If you're using a WizardDialog
you can override the method createButtonsForButtonBar(Composite parent)
like it's done here.