Difference between revisions of "Art4Apps"

From Sugar Labs
Jump to navigation Jump to search
Line 80: Line 80:
 
== Sources ==
 
== Sources ==
  
Repository is hosted here https://github.com/godiard/sugar-artwork
+
Repository is hosted here https://github.com/godiard/art4apps

Revision as of 17:04, 9 January 2014

Introduction

Art4Apps is a database of images, audio,and videos files of words created by ET4D under a Creative Common License (CC BY-SA). The primary objective in sharing this database is to promote apps development in the field of literacy in an effort to support and sustain the diversity among world languages. More information is available in the site [1]

Letter images are from Vicki Wenderlich web site [2] another nice source for free game images.

[1] http://art4apps.org/

[2] http://www.vickiwenderlich.com/2012/12/free-game-art-letter-tiles/

Use in activities

To make easier the use in the activities, we have a python library and the resources packaged in rpms.

You can download the last versions here:

http://harvest.one-education.org/public/au1b-updates/RPMS/art4apps-0.3-0.noarch.rpm
http://harvest.one-education.org/public/au1b-updates/RPMS/art4apps-audio-en-0.3-0.noarch.rpm
http://harvest.one-education.org/public/au1b-updates/RPMS/art4apps-audio-es-0.3-0.noarch.rpm
http://harvest.one-education.org/public/au1b-updates/RPMS/art4apps-audio-fr-0.3-0.noarch.rpm
http://harvest.one-education.org/public/au1b-updates/RPMS/art4apps-images-0.3-0.noarch.rpm

Examples

from art4apps import Art4Apps
aa = Art4Apps()
print "All words in english"
words = aa.get_words()
print words
print "All categories in english"
categories = aa.get_categories()
print categories
print "Test a translation to all the available languages" 
languages = aa.get_languages()
for language in languages:
    print "Language %s" % language
    word = words[4]
    print "Word %s = %s" % (word, aa.get_translation(word, language))
print "Words on category %s" % categories[2] 
print aa.get_words_by_category(categories[2])
print "All the words in language %s" % languages[1] 
print aa.get_words(languages[1])
print "IMAGE FILE NAME FOR %s" % words[5] 
print aa.get_image_filename(words[5])
print "AUDIO FILE NAME FOR %s" % words[5] 
print aa.get_audio_filename(words[5])
print "AUDIO FILE NAME FOR %s lang %s" % (words[2], 'fr') 
print aa.get_audio_filename(words[2], 'fr')
  • If audio file is not available, get_audio_filename() return None

Improving translations

Art4apps-translator-screenshot.png

To update translations or create new languages, you can do:

art4apps-translator lang

where "lang" is your two letters language code.

You will see the screen displayed here, and can select in the list of words at the left the word to translate, the image will be displayed at the right, and you can add your translation in the input at the bottom. The change is accepted pressing Enter or clicking in the small arrow at bottom right.

When you close the utility, a file words_lang.json will be created in the directory where you are placed. If you want your activity use it, need create a directory "data" and put the file inside. If you interrupt your translation session, and start again, copy the generated file in the 'data' directory. This is not done by the utility to avoid damaging data accidentally. We would like get updated files and add them to the rpms to distribute them. Please send them to godiard at sugarlabs dot org.

Activities using Art4Apps

Sources

Repository is hosted here https://github.com/godiard/art4apps