File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
app/src/processing/app/ui
build/shared/lib/languages Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -141,30 +141,30 @@ fun PDEWelcome(base: Base? = null) {
141141 TextButton (
142142 onClick = {
143143 base?.let {
144- base.showExamplesFrame ()
144+ base.showSketchbookFrame ()
145145 } ? : noBaseWarning()
146146 },
147147 colors = colors,
148148 modifier = medModifier,
149149 shape = shape
150150 ) {
151- Icon (Icons .Outlined .FolderSpecial , contentDescription = " " )
151+ Icon (Icons .Outlined .FolderOpen , contentDescription = " " )
152152 Spacer (Modifier .width(12 .dp))
153- Text (locale[" welcome.actions.examples " ] )
153+ Text (locale[" welcome.actions.sketchbook " ], modifier = Modifier .align( Alignment . CenterVertically ) )
154154 }
155155 TextButton (
156156 onClick = {
157157 base?.let {
158- base.showSketchbookFrame ()
158+ base.showExamplesFrame ()
159159 } ? : noBaseWarning()
160160 },
161161 colors = colors,
162162 modifier = medModifier,
163163 shape = shape
164164 ) {
165- Icon (Icons .Outlined .FolderOpen , contentDescription = " " )
165+ Icon (Icons .Outlined .FolderSpecial , contentDescription = " " )
166166 Spacer (Modifier .width(12 .dp))
167- Text (locale[" sketchbook " ], modifier = Modifier .align( Alignment . CenterVertically ) )
167+ Text (locale[" welcome.actions.examples " ] )
168168 }
169169 }
170170 }
Original file line number Diff line number Diff line change @@ -645,8 +645,9 @@ color_chooser.select = Select
645645# Welcome Screen
646646welcome.processing.logo = Processing Logo
647647welcome.processing.title = Welcome to Processing
648- welcome.actions.sketch.new = Empty Sketch
648+ welcome.actions.sketch.new = New Sketch
649649welcome.actions.examples = Open Examples
650+ welcome.actions.sketchbook = My Sketches
650651welcome.actions.show_startup = Show this window at startup
651652welcome.resources.title = Resources
652653welcome.resources.get_started = Get Started
You can’t perform that action at this time.
0 commit comments