~writer-devs/writer/trunk

« back to all changes in this revision

Viewing changes to src/Widgets/WelcomeView.vala

  • Committer: Anthony Huben
  • Date: 2015-04-10 17:53:06 UTC
  • Revision ID: harp37@gmail.com-20150410175306-whdi6xi9xrf19xun
Modified WelcomeView.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
        private WriterApp app;
32
32
        
33
33
        public WelcomeView (WriterApp app) {
34
 
            base ("No Documents Open", "Open a saved file or create a new one to begin!");
 
34
            base ("No Documents Open", "Open a document to begin editing.");
35
35
            
36
36
            this.app = app;
37
37
            
38
 
            this.append ("document-new", "New File", "Create a new empty file.");
39
 
            this.append ("document-open", "Open File", "Open a saved file.");
 
38
            this.append ("document-new", "New File", "Create a new document.");
 
39
            this.append ("document-open", "Open File", "Open a saved document.");
40
40
            
41
41
            this.activated.connect ((index) => {
42
42
                // TODO
51
51
        }
52
52
    
53
53
    }
54
 
}
 
 
b'\\ No newline at end of file'
 
54
}