Method: CodelessCode::Commands::ListTranslations#call
- Defined in:
- lib/codeless_code/commands/list_translations.rb
#call ⇒ Object
29 30 31 32 33 34 |
# File 'lib/codeless_code/commands/list_translations.rb', line 29 def call @catalog.language_sets.each do |set| translators = set.fable_sets.map(&:translator).sort puts format('%s %s', set.lang, translators.join(', ')) end end |