[squeak-dev] The Trunk: Collections-nice.470.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Mar 31 12:36:10 UTC 2012


Nicolas Cellier uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-nice.470.mcz

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

Name: Collections-nice.470
Author: nice
Time: 31 March 2012, 2:34:33.567 pm
UUID: 1612b1dd-7b3c-43fa-81d2-46da0eb098eb
Ancestors: Collections-dtl.469

Republish without the #translated* messages which have been moved in GetText

=============== Diff against Collections-dtl.469 ===============

Item was removed:
- ----- Method: String>>translated (in category 'translating') -----
- translated
- 	"answer the receiver translated to the default language"
- 	^ NaturalLanguageTranslator current  translate: self!

Item was removed:
- ----- Method: String>>translatedIfCorresponds (in category 'translating') -----
- translatedIfCorresponds
- 	"answer the receiver translated to the default language only if 
- 	the receiver begins and ends with an underscore (_)"
- 	^ ('_*_' match: self)
- 		ifTrue: [(self copyFrom: 2 to: self size - 1) translated]
- 		ifFalse: [self]!

Item was removed:
- ----- Method: String>>translatedTo: (in category 'translating') -----
- translatedTo: localeID 
- 	"answer the receiver translated to the given locale id"
- 	^ localeID translator translate: self!



More information about the Squeak-dev mailing list