Ejemplo n.º 1
0
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Adds a note to the notes list.
 /// </summary>
 /// <param name="note">The note.</param>
 /// <returns>true if the note was added successfully. Otherwise, false.</returns>
 /// ------------------------------------------------------------------------------------
 public bool AddNote(XLiffNote note)
 {
     return(XLiffNote.AddNote(note, _notes));
 }
Ejemplo n.º 2
0
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Adds a note to the notes list.
 /// </summary>
 /// ------------------------------------------------------------------------------------
 public bool AddNote(string lang, string text)
 {
     return(XLiffNote.AddNote(lang, text, _notes));
 }