requestApplyCurrentTranslationConfirmation method

void requestApplyCurrentTranslationConfirmation()

If application is running in interactive mode this method will print available interactive options

Implementation

void requestApplyCurrentTranslationConfirmation() {
  stdout.writeln('Would you like to apply this translation? [Y/N/S/C]');
  stdout.writeln('[Y] - yes, apply all');
  stdout.writeln('[N] - no, discard all (default)');
  stdout.writeln('[S] - select translations to apply. Example: S es,it');
  stdout.writeln('[C] - cancel all, all changes will be discarded and files '
      'will be not modified');
}