Re: [Sugar-devel] Result of test activities on Sugar 0.94.1

2012-01-20 Thread Tabitha Roder
On 20 January 2012 00:49, Chris Leonard cjlhomeaddr...@gmail.com wrote: I will certainly be using the i18n / L10n information to investigate the possibility of soliciting more PO files for the Honey project by pestering developers about i18n. I hope someone has posted about this to the

Re: [Sugar-devel] [PATCH 2/5] sl#2815: Localization fixes.

2012-01-20 Thread Gonzalo Odiard
The problem is the substitution of a single string to translate here: secondary_text = _(*'%(hour)d:%(min).2d remaining'*) % \ {'hour': remaining_hourpart, 'min': remaining_minpart} by a concatenation here: time_value = '%(hour)d:%(min).2d '

Re: [Sugar-devel] [PATCH 2/5] sl#2815: Localization fixes.

2012-01-20 Thread Chris Leonard
On Fri, Jan 20, 2012 at 8:31 AM, Gonzalo Odiard gonz...@laptop.org wrote: The problem is the substitution of a single string to translate here:                 secondary_text = _('%(hour)d:%(min).2d remaining') % \                         {'hour': remaining_hourpart, 'min': remaining_minpart}

Re: [Sugar-devel] [PATCH 3/5] sl#2816: Localization fixes.

2012-01-20 Thread Chris Leonard
This should correct the issue described in the bug. http://bugs.sugarlabs.org/ticket/2816 cjl On Thu, Jan 19, 2012 at 4:36 PM, Ajay Garg a...@activitycentral.com wrote: Signed-off-by: Ajay Garg a...@activitycentral.com ---  data/sugar.schemas.in |    4 ++--  1 files changed, 2

Re: [Sugar-devel] [PATCH sugar] Partial fix for GSM connection time (see SL#2992; fixes SL#1727)

2012-01-20 Thread Daniel Drake
On Mon, Jan 9, 2012 at 9:19 PM, Sascha Silbe si...@activitycentral.com wrote: Currently there seems to be no way to determine the connection time [4], so as a partial fix we try to track the connection time ourselves. This will be off in case Sugar gets restarted (or the connection established

Re: [Sugar-devel] [PATCH sugar] Partial fix for GSM connection time (see SL#2992; fixes SL#1727)

2012-01-20 Thread Jerry Vonau
On Fri, 2012-01-20 at 15:05 +, Daniel Drake wrote: On Mon, Jan 9, 2012 at 9:19 PM, Sascha Silbe si...@activitycentral.com wrote: Currently there seems to be no way to determine the connection time [4], so as a partial fix we try to track the connection time ourselves. This will be off

[Sugar-devel] browse 130 is not compatible as it uses gtk +3 - should it be identified as not compatible with most present version of sugar?

2012-01-20 Thread Thomas C Gilliard
http://download.sugarlabs.org/activities/4024/browse-130.xo Should this listing somehow identify this as a version that will not work with most sugar versions? maybe browse*-130.xo ? Until the conversion of activities is completed. Tom Giliard satellit_

Re: [Sugar-devel] browse 130 is not compatible as it uses gtk +3 - should it be identified as not compatible with most present version of sugar?

2012-01-20 Thread Gonzalo Odiard
It's already identified: Versión 130http://activities.sugarlabs.org/es-ES/sugar/addons/versions/4024#version-130— 23/12/11 — 381 Kb Uploader: manuq http://activities.sugarlabs.org/es-ES/sugar/user/4059 Válida para: - Sugar: 0.96 – 0.96 By default, ASLO offer you download Browse 129

Re: [Sugar-devel] [PATCH 2/5] sl#2815: Localization fixes.

2012-01-20 Thread Ajay Garg
Thanks Gonzalo. Thanks Chris. I think I understood the mechanism: In the i18n file, the key string will be %(hour)d %(min).2d remaining. The translation needs to be done, with the understanding that the tokens %(hour)d, %(min).2d and remaining might be inter-located, however the information

Re: [Sugar-devel] [PATCH 2/5] sl#2815: Localization fixes.

2012-01-20 Thread Gonzalo Odiard
I don't know. The documentation [1] and [2] show only single line comments, and I could not found one example of multiple lines comments in our code. Gonzalo [1]

[Sugar-devel] [PATCH] sl#3286: race condition fixed by making the read- and write- calls pseudo synchronous.

2012-01-20 Thread Ajay Garg
--- The workflow to read and write data has been made pseudo-synchronous. The write_async call is executed, after the execution of read_async call; and the next read_async call is executed, after the current write_async call has been completed. Note that, the testing was done with the 860-bytes

[Sugar-devel] [PATCH] sl#2955: fixing the exception.

2012-01-20 Thread Ajay Garg
--- Now, the execution takes place, only if the handle is present already (as per Daniel Drake). src/jarabe/model/neighborhood.py |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/jarabe/model/neighborhood.py b/src/jarabe/model/neighborhood.py index

Re: [Sugar-devel] [PATCH 5/5] sl#3149: Localization fixes.

2012-01-20 Thread Chris Leonard
Some are good, some are not, see below. On Thu, Jan 19, 2012 at 4:36 PM, Ajay Garg a...@activitycentral.com wrote: Signed-off-by: Ajay Garg a...@activitycentral.com -    return ', '.join([_('%(interface)s: %(version)s') % +    return ', '.join(['%(interface)s: %(version)s' % I think this is

Re: [Sugar-devel] [PATCH 5/5] sl#3149: Localization fixes.

2012-01-20 Thread Ajay Garg
Thanks Chris. Perhaps, if I could know the following, I would have a translation label in translations-with-format-specifiers. Else, I use a one-line-only translation label by default :-) Can the TRANS label string span multiple lines? That is, is something like :: # TRANS: first