Re: [Sugar-devel] Presentation

2014-03-26 Thread Gonzalo Odiard
Welcome Gabriel! Gonzalo On Thu, Mar 20, 2014 at 5:14 PM, Gabriel Hernán Perez glpp2014.g...@gmail.com wrote: Hello everyone, My name is Gabriel and I am a mathematics student from Buenos Aires, Argentina. I have some experience with Smalltalk and Python and I'm looking forward to keep

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Gonzalo Odiard
I think was done to preserve space. Not sure if that is a concern now. Gonzalo On Sun, Mar 9, 2014 at 8:43 PM, me m...@jvonau.ca wrote: Hi All: I'm wondering if there is any reason why there are po files generated for the source in git, these are included as .mo files in the src rpm, but

[Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread Martin Abente
Hello Everyone, We recently landed a messages notifications feature, based on Gary's designs [1]. One of our GCI 2013 hackers, Sam Parkinson, is has sent the bits to enable activities to send notifications too, as in Gary's design. His work is almost done [2,3,4], but it introduces a new method

Re: [Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread Gonzalo Odiard
I vote for add_notification Gonzalo On Wed, Mar 26, 2014 at 9:40 AM, Martin Abente martin.abente.lah...@gmail.com wrote: Hello Everyone, We recently landed a messages notifications feature, based on Gary's designs [1]. One of our GCI 2013 hackers, Sam Parkinson, is has sent the bits to

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Jerry Vonau
Just wondering how AU is reacting without having the correct spelling for 'favourites', 'neighbourhood' that comes with en_BR. This is a regression from DX4 that included such support. It would be better would really support en_AU thou. just my thoughts, Jerry On March 26, 2014 at 6:59 AM

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Gonzalo Odiard
Honestly, they didn't complained yet. Thanks for pointing that. Gonzalo On Wed, Mar 26, 2014 at 10:33 AM, Jerry Vonau m...@jvonau.ca wrote: Just wondering how AU is reacting without having the correct spelling for 'favourites', 'neighbourhood' that comes with en_BR. This is a regression

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Chris Leonard
I believe AU makes their own build with en_GB. cjl On Wed, Mar 26, 2014 at 9:33 AM, Jerry Vonau m...@jvonau.ca wrote: Just wondering how AU is reacting without having the correct spelling for 'favourites', 'neighbourhood' that comes with en_BR. This is a regression from DX4 that included

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Jerry Vonau
http://bugs.sugarlabs.org/ticket/4743 Jerry On March 26, 2014 at 8:48 AM Gonzalo Odiard godi...@sugarlabs.org wrote: Honestly, they didn't complained yet. Thanks for pointing that. Gonzalo On Wed, Mar 26, 2014 at 10:33 AM, Jerry Vonau m...@jvonau.ca wrote: Just wondering how AU is

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Gonzalo Odiard
We included en_AU, but not en_GB. Will be in the next image. Gonzalo On Wed, Mar 26, 2014 at 10:59 AM, Chris Leonard cjlhomeaddr...@gmail.comwrote: I believe AU makes their own build with en_GB. cjl On Wed, Mar 26, 2014 at 9:33 AM, Jerry Vonau m...@jvonau.ca wrote: Just wondering how

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Jerry Vonau
They did when DX4 was used, not now. Jerry On March 26, 2014 at 8:59 AM Chris Leonard cjlhomeaddr...@gmail.com wrote: I believe AU makes their own build with en_GB. cjl On Wed, Mar 26, 2014 at 9:33 AM, Jerry Vonau m...@jvonau.ca wrote: Just wondering how AU is reacting without having

Re: [Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread Sebastian Silva
Hi Martin, What about using this: https://developer.gnome.org/notification-spec/ ? I really think we should be moving towards FreeDesktop standards instead of rolling our own. Currently it would look like this, or you can add some syntax sugar to it: #!/usr/bin/python from gi.repository

Re: [Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread Martin Abente
Hello Sebastian, The notification back-end is already a subset of freedesktop notification definition. That is something we had in Sugar since a long time. We just added some other missing parts (displaying subject and body). But, for the front-end, If you look at Gary's design, you will see

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Jerry Vonau
That is strange, I don't see en_AU's translation file when extracting the files from the released rpm[1]. The src[2] rpm's tar file only lists en_GB and en_USA, but those are not in the released rpm and not en_AU at all. Jerry 1.

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Gonzalo Odiard
There are not en_AU in http://translate.sugarlabs.org/ neither. Maybe was just en_GB? Gonzalo On Wed, Mar 26, 2014 at 1:10 PM, Jerry Vonau m...@jvonau.ca wrote: That is strange, I don't see en_AU's translation file when extracting the files from the released rpm[1]. The src[2] rpm's tar file

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Martin Langhoff
On Wed, Mar 26, 2014 at 7:59 AM, Gonzalo Odiard godi...@sugarlabs.orgwrote: I think was done to preserve space. Not sure if that is a concern now. Yep. It was definitely a concern for XO-1 and for XO-1.5 images for 2GB machines. m -- martin.langh...@gmail.com - ask interesting

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Chris Leonard
We do not have an en_AU language project in Pootle, so that does not surprise me. On Wed, Mar 26, 2014 at 12:10 PM, Jerry Vonau m...@jvonau.ca wrote: That is strange, I don't see en_AU's translation file when extracting the files from the released rpm[1]. The src[2] rpm's tar file only lists

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Jerry Vonau
I know there is no translations for en_AU in Pootle therefore not in sugar, but en_GB was used in the past as a substitute for this shortcoming. There are languages in Pootle that form the source tar file that becomes part of the source rpm, however the resulting installable rpm doesn't ship all

Re: [Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread Sebastian Silva
Sorry I hadn't read the proposal in detail. So if I understand correctly, if a regular X11 application emits a gi.repository.Notification, it will display correctly in Sugar? That's great, kudos on the work. Sebastian El mié, 26 de mar 2014 a las 10:21 AM, Martin Abente

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Gonzalo Odiard
Looks like we need a file po/LINGUAS Anybody have a idea about why we don't have one? Gonzalo On Wed, Mar 26, 2014 at 3:27 PM, Gonzalo Odiard godi...@sugarlabs.orgwrote: Maybe the reason is we don't have en_GB in the variable ALL_LINGUAS in the Makefile.in in sugar/po directory. In my

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Gonzalo Odiard
Maybe the reason is we don't have en_GB in the variable ALL_LINGUAS in the Makefile.in in sugar/po directory. In my system: * we have a file en_GB.po sugar-build/sugar/po/ * the file is not copied in sugar-build/build/out/install/share/locale/en_GB/LC_MESSAGES not sure how Makefile.in is

[Sugar-devel] [Design] Develop activity

2014-03-26 Thread Kamal Kaur
Hello Designers, I just ran the Develop activity the first time which opens multiple files. Something looked strange to me there about the tabs and their colors. As Gonzalo told me in IRC that we need to be consistent with the Browse activity regarding tabs and colors, I agree. But I had a bad

Re: [Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread Sam Parkinson
Hi, It is compatible with the dbus interface thing. But notifications with an app name of something like Chat activity will get a new icon in the frame. The function in the toolkit just sends a notification where the name is the activities id, which shows it under the activity button. Sam On Mar

Re: [Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread James Cameron
On Wed, Mar 26, 2014 at 09:40:41AM -0300, Martin Abente wrote: His work is almost done [2,3,4], but it introduces a new method to the base Activity class, therefore I wanted your opinions regarding the name of this method, the current options are [4]: * send_notification * add_notification

Re: [Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread Gonzalo Odiard
sugar_shell_add_notification_and_send_to_user would be the worst. Maybe is a good name for a Java implementation :) -- Gonzalo Odiard SugarLabs - Learning Software for children ___ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org

Re: [Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread Manuel Quiñones
2014-03-26 18:12 GMT-03:00 James Cameron qu...@laptop.org: On Wed, Mar 26, 2014 at 09:40:41AM -0300, Martin Abente wrote: His work is almost done [2,3,4], but it introduces a new method to the base Activity class, therefore I wanted your opinions regarding the name of this method, the current

Re: [Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread Martin Abente
notify_user sounds good to me :) On Wed, Mar 26, 2014 at 5:36 PM, Manuel Quiñones ma...@laptop.org wrote: 2014-03-26 18:12 GMT-03:00 James Cameron qu...@laptop.org: On Wed, Mar 26, 2014 at 09:40:41AM -0300, Martin Abente wrote: His work is almost done [2,3,4], but it introduces a new

Re: [Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread Manuel Quiñones
2014-03-26 19:23 GMT-03:00 Martin Abente martin.abente.lah...@gmail.com: notify_user sounds good to me :) Same to me, notify_user fits best. I meant to add my comment below that one, sorry. On Wed, Mar 26, 2014 at 5:36 PM, Manuel Quiñones ma...@laptop.org wrote: 2014-03-26 18:12 GMT-03:00

Re: [Sugar-devel] New method for Activity class to send notifications

2014-03-26 Thread Walter Bender
On Wed, Mar 26, 2014 at 6:43 PM, Manuel Quiñones ma...@laptop.org wrote: 2014-03-26 19:23 GMT-03:00 Martin Abente martin.abente.lah...@gmail.com: notify_user sounds good to me :) +1 Same to me, notify_user fits best. I meant to add my comment below that one, sorry. On Wed, Mar 26, 2014

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Jerry Vonau
The hint was given in the initial email, alter ALL_LINGUAS= in /configure.ac Jerry On March 26, 2014 at 1:27 PM Gonzalo Odiard godi...@sugarlabs.org wrote: Maybe the reason is we don't have en_GB in the variable ALL_LINGUAS in the   Makefile.in in sugar/po directory. In my system: * we

Re: [Sugar-devel] shipped languages/locales

2014-03-26 Thread Gonzalo Odiard
Yes, but is not a problem in the rpm, but in the sources repository. Gonzalo On Wed, Mar 26, 2014 at 8:15 PM, Jerry Vonau m...@jvonau.ca wrote: The hint was given in the initial email, alter ALL_LINGUAS= in /configure.ac Jerry On March 26, 2014 at 1:27 PM Gonzalo Odiard

[Sugar-devel] Develop activity

2014-03-26 Thread forster
Hi Could someone with the permissions please make the ASLO page for Develop http://activities.sugarlabs.org/en-US/sugar/addon/4058 have a home page link to http://wiki.sugarlabs.org/go/Activities/Develop Thanks Tony ___ Sugar-devel mailing list

Re: [Sugar-devel] Develop activity

2014-03-26 Thread Alan Jhonn Aguiar Schwyn
Ready! Please test. Regards! Alan Date: Thu, 27 Mar 2014 15:21:39 +1100 From: fors...@ozonline.com.au To: sugar-devel@lists.sugarlabs.org Subject: [Sugar-devel] Develop activity Hi Could someone with the permissions please make the ASLO page for Develop

Re: [Sugar-devel] Develop activity

2014-03-26 Thread James Cameron
The home page link works for me. -- James Cameron http://quozl.linux.org.au/ ___ Sugar-devel mailing list Sugar-devel@lists.sugarlabs.org http://lists.sugarlabs.org/listinfo/sugar-devel