The Trunk: Graphics-tfel.364.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Graphics-tfel.364.mcz

commits-2
Tim Felgentreff uploaded a new version of Graphics to project The Trunk:
http://source.squeak.org/trunk/Graphics-tfel.364.mcz

==================== Summary ====================

Name: Graphics-tfel.364
Author: tfel
Time: 29 August 2016, 3:11:43.341946 pm
UUID: 6e0cb73c-3749-b742-b9ea-41fad5ec6b27
Ancestors: Graphics-tfel.361, Graphics-mt.363

merge translations from Squeakland Etoys

=============== Diff against Graphics-mt.363 ===============

Item was changed:
  ----- Method: Form class>>serviceImageAsBackground (in category 'file list services') -----
  serviceImageAsBackground
  "Answer a service for setting the desktop background from a given graphical file's contents"
 
  ^ SimpleServiceEntry
  provider: self
+ label: 'use graphic as background' translatedNoop
- label: 'use graphic as background'
  selector: #openAsBackground:
+ description: 'use the graphic as the background for the desktop' translatedNoop
+ buttonLabel: 'background' translatedNoop!
- description: 'use the graphic as the background for the desktop'
- buttonLabel: 'background'!

Item was changed:
  ----- Method: Form class>>serviceImageImportDirectory (in category 'file list services') -----
  serviceImageImportDirectory
  "Answer a service for reading a graphic into ImageImports"
 
  ^(SimpleServiceEntry
  provider: self
+ label: 'import all images from this directory' translatedNoop
- label: 'import all images from this directory'
  selector: #importImageDirectory:
+ description: 'Load all graphics found in this directory, adding them to the ImageImports repository.' translatedNoop
+ buttonLabel: 'import dir' translatedNoop)
- description: 'Load all graphics found in this directory, adding them to the ImageImports repository.'
- buttonLabel: 'import dir')
  argumentGetter: [ :fileList | fileList directory ];
  yourself
  !

Item was changed:
  ----- Method: Form class>>serviceImageImportDirectoryWithSubdirectories (in category 'file list services') -----
  serviceImageImportDirectoryWithSubdirectories
  "Answer a service for reading all graphics from a directory and its subdirectories into ImageImports"
 
  ^(SimpleServiceEntry
  provider: self
+ label: 'import all images from here and subdirectories' translatedNoop
- label: 'import all images from here and subdirectories'
  selector: #importImageDirectoryWithSubdirectories:
+ description: 'Load all graphics found in this directory and its subdirectories, adding them to the ImageImports repository.' translatedNoop
+ buttonLabel: 'import subdirs' translatedNoop)
- description: 'Load all graphics found in this directory and its subdirectories, adding them to the ImageImports repository.'
- buttonLabel: 'import subdirs')
  argumentGetter: [ :fileList | fileList directory ];
  yourself
  !

Item was changed:
  ----- Method: Form class>>serviceOpenImageInWindow (in category 'file list services') -----
  serviceOpenImageInWindow
  "Answer a service for opening a graphic in a window"
 
  ^ SimpleServiceEntry
  provider: self
+ label: 'open graphic in a window' translatedNoop
- label: 'open graphic in a window'
  selector: #openImageInWindow:
+ description: 'open a graphic file in a window' translatedNoop
+ buttonLabel: 'open' translatedNoop!
- description: 'open a graphic file in a window'
- buttonLabel: 'open'!