l
.setText("Check the resource files and values below to select which strings will be sent for translation");
createFileListTable(composite);
TabFolder tabFolder = new TabFolder(composite, SWT.NONE);
TabItem tabTranslateStringsItem = new TabItem(tabFolder, SWT.NULL);
tabTranslateStringsItem.setText("Translate Strings");
TabItem tabIgnoreStringsItem = new TabItem(tabFolder, SWT.NULL);
tabIgnoreStringsItem.setText("Ignore Strings");
Group translateGroup = createStringListTable(tabFolder,
AndrolateApplication.STRINGLIST_TABLE_MODE_TRANSLATE);
tabTranslateStringsItem.setControl(translateGroup);
Group ignoreGroup = createStringListTable(tabFolder,
AndrolateApplication.STRINGLIST_TABLE_MODE_IGNORE);
tabIgnoreStringsItem.setControl(ignoreGroup);
tabFolder.setLayoutData(new GridData(GridData.FILL_BOTH));
((GridData) tabFolder.getLayoutData()).horizontalSpan = 2;
setControl(composite);
loadResources();
}