The Trunk: Collections-nice.470.mcz

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

The Trunk: Collections-nice.470.mcz

commits-2
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!