Ignore:
Timestamp:
Sep 20, 2010, 8:51:41 PM (14 years ago)
Author:
mlg
Message:

Translation of the comments
French -> English

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/jiwigo/trunk/src/main/java/fr/mael/jiwigo/ui/mainframe/ThumbnailSearchPanel.java

    r6972 r6980  
    8080
    8181    /**
    82      * rafraichissement, afin d'afficher les nouvelles images
    83      * @param categoryId
     82     *refreshes
     83     * @param categoryId the id of the category
    8484     */
    8585    public void rechercher() {
     
    8888        JPanel panelh = new JPanel(new FlowLayout());
    8989        try {
    90             MainFrame.getInstance().setReussiteMessage(Messages.getMessage("thumbviewer_loading"));
     90            MainFrame.getInstance().setMessage(Messages.getMessage("thumbviewer_loading"));
    9191            ImagesManagement.LIST_IMAGE = ImageService.getInstance().search(queryString);
    9292            for (Image image : ImagesManagement.LIST_IMAGE) {
     
    112112            this.repaint();
    113113            this.revalidate();
    114             MainFrame.getInstance().setReussiteMessage(Messages.getMessage("loadingOk"));
     114            MainFrame.getInstance().setMessage(Messages.getMessage("loadingOk"));
    115115        } catch (Exception e) {
    116116            LOG.error(Outil.getStackTrace(e));
    117117            JOptionPane.showMessageDialog(null, Messages.getMessage("imagesListingError"),
    118118                    Messages.getMessage("error"), JOptionPane.ERROR_MESSAGE);
    119             MainFrame.getInstance().setErrorMessage(Messages.getMessage("imagesListingError"));
     119            MainFrame.getInstance().setMessage(Messages.getMessage("imagesListingError"));
    120120        }
    121121    }
Note: See TracChangeset for help on using the changeset viewer.