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/comments/CommentsDialog.java

    r6821 r6980  
    5454   
    5555 * @author mael
    56  * dialog affichant les commentaires d'une image et permettant d'en ajouter un
     56 * dialog that displays the comments of an image and allows to add one
    5757 */
    5858public class CommentsDialog extends JDialog implements ActionListener {
     
    6363            .getLog(CommentsDialog.class);
    6464    /**
    65      * booleen permettant d'alterner les couleurs des commentaires
     65     * booleen that allows to alernate the colors
    6666     */
    6767    private boolean alternate = true;
    6868    /**
    69      * area permettant d'écrire un nouveau commentaire
     69     * area to write a new comment
    7070     */
    7171    private JTextArea textArea = new JTextArea();
    7272    /**
    73      * bouton d'envoi d'un commentaire
     73     * sends the new comment
    7474     */
    7575    private JButton boutonEnvoyer = new JButton("Ok");
    7676
    7777    /**
    78      * id de l'image
     78     * id of the image
    7979     */
    8080    private Integer imageId;
    8181    /**
    82      * panel qui permet de scroller sur les commentaires
     82     * panel that allows to scroll
    8383     */
    8484    private JPanel panelScrollCommentaires = new JPanel(new GridBagLayout());
    8585    /**
    86      * panel qui permet d'ajouter un commentaire
     86     * panel that allows to add a comment
    8787     */
    8888    private JPanel panelAjouterCommentaire = new JPanel(new FlowLayout());
    8989
    9090    /**
    91      * Scrollpane qui permet de scroller sur l'area
     91     * Scrollpane
    9292     */
    9393    private JScrollPane scrollPaneArea;
    9494    /**
    95      * scrollpane qui permet de scroller sur les commentaires
     95     * scrollpane that allows to scroll
    9696     */
    9797    private JScrollPane scrollPaneCommentaires;
    9898
    9999    /**
    100      * Constructeur
    101      * @param imageId id de l'image
     100     * Constructor
     101     * @param imageId the id of the image
    102102     */
    103103    public CommentsDialog(JFrame parent, Integer imageId) {
Note: See TracChangeset for help on using the changeset viewer.