Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Spec2-Adapters-Morphic/SpMorphicBackend.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ SpMorphicBackend >> inform: aString [
"If we are not in interactive mode, we log in the stdout. Else we delegate to the Morphic notification"

Smalltalk isInteractive
ifTrue: [ GrowlMorph openWithLabel: 'Information' translated contents: aString ]
ifTrue: [ GrowlMorph openWithLabel: 'Information' contents: aString ]
ifFalse: [
| logBlock |
logBlock := [ :logger |
Expand Down Expand Up @@ -99,7 +99,7 @@ SpMorphicBackend >> notifyError: aSpecNotification [
SpMorphicBackend >> notifyInfo: aSpecNotification [

GrowlMorph
openWithLabel: 'Information' translated
openWithLabel: 'Information'
contents: aSpecNotification message
]

Expand Down
2 changes: 1 addition & 1 deletion src/Spec2-Adapters-Morphic/SpNotebookMorph.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ SpNotebookMorph >> newCloseButtonFor: aSpNotebookPage [
newCloseControlIn: self
for: aSpNotebookPage
action: [ aSpNotebookPage removeFromNotebook ]
help: 'Close this page' translated
help: 'Close this page'
]

{ #category : 'factory' }
Expand Down
6 changes: 3 additions & 3 deletions src/Spec2-Morphic/SpRGBSlidersPresenter.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ SpRGBSlidersPresenter >> initializePresenters [
blueSlider := self instantiate: SpSliderInputPresenter.
redSlider
min: 0;
max: 255; label: 'Red' translated.
max: 255; label: 'Red'.
greenSlider
min: 0;
max: 255; label: 'Green' translated.
max: 255; label: 'Green'.
blueSlider
min: 0;
max: 255; label: 'Blue' translated.
max: 255; label: 'Blue'.
self focusOrder
add: redSlider;
add: greenSlider;
Expand Down
Loading