diff --git a/app/scripts/services/drivers.js b/app/scripts/services/drivers.js index f132414f7..8b63503db 100644 --- a/app/scripts/services/drivers.js +++ b/app/scripts/services/drivers.js @@ -300,8 +300,7 @@ angular.module('icestudio') */ function enableWindowsDriversFTDI() { - var message = gettextCatalog.getString('

FTDI driver installation instructions

  1. Connect the FPGA board
  2. Replace the (Interface 0) driver of the board by libusbK
  3. Unplug and reconnect the board
') + - gettextCatalog.getString('It is recommended to use USB 2.0 ports'); + var message = gettextCatalog.getString('

FTDI driver installation instructions

  1. Connect the FPGA board to the USB and wait until Windows finishes the default installation of the driver
  2. When the OK button is clicked, the FTDI driver installer will be launched in a new window
  3. In the installer, replace the (Interface 0) driver of the board by libusbK
  4. Unplug and reconnect the board
') + gettextCatalog.getString('It is recommended to use USB 2.0 ports'); alertify.confirm(message, function () { enableWindowsDrivers('ftdi'); }); @@ -315,7 +314,7 @@ angular.module('icestudio') } function enableWindowsDriversSerial() { - var message = gettextCatalog.getString('

Serial driver installation instructions

  1. Connect the FPGA board
  2. Install the driver
  3. Unplug and reconnect the board
'); + var message = gettextCatalog.getString('

Serial driver installation instructions

  1. Connect the FPGA board to the USB and wait until Windows finishes the default installation of the driver
  2. When the OK button is clicked, the Serial driver installer will be launched in a new window
  3. In the installer, follow the steps to install the driver
  4. Unplug and reconnect the board
'); alertify.confirm(message, function () { enableWindowsDrivers('serial'); });