mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 21:20:45 +00:00
Improve tense of okSummary
This commit is contained in:
@ -211,14 +211,11 @@ public class BulkEditTransformStep extends AbstractTransformStep
|
|||||||
@Override
|
@Override
|
||||||
public ArrayList<ProcessSummaryLineInterface> getProcessSummary(RunBackendStepOutput runBackendStepOutput, boolean isForResultScreen)
|
public ArrayList<ProcessSummaryLineInterface> getProcessSummary(RunBackendStepOutput runBackendStepOutput, boolean isForResultScreen)
|
||||||
{
|
{
|
||||||
if(isForResultScreen)
|
okSummary.setSingularFutureMessage(tableLabel + " record will be edited.");
|
||||||
{
|
okSummary.setPluralFutureMessage(tableLabel + " records will be edited.");
|
||||||
okSummary.setMessage(tableLabel + " records were edited.");
|
okSummary.setSingularPastMessage(tableLabel + " record was edited.");
|
||||||
}
|
okSummary.setPluralPastMessage(tableLabel + " records were edited.");
|
||||||
else
|
okSummary.pickMessage(isForResultScreen);
|
||||||
{
|
|
||||||
okSummary.setMessage(tableLabel + " records will be edited.");
|
|
||||||
}
|
|
||||||
|
|
||||||
ArrayList<ProcessSummaryLineInterface> rs = new ArrayList<>();
|
ArrayList<ProcessSummaryLineInterface> rs = new ArrayList<>();
|
||||||
rs.add(okSummary);
|
rs.add(okSummary);
|
||||||
|
Reference in New Issue
Block a user