Vincent Fretin | 7 Jul 13:23
Picon

Final release of plone.app.locales for Plone 3.3

Hi,

I will do a last release of plone.app.locales for Plone 3.3 final saturday 11.
After this date, I won't be available until the end of July.

Cheers
Vincent Fretin

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have 
the opportunity to enter the BlackBerry Developer Challenge. See full prize 
details at: http://p.sf.net/sfu/blackberry
Vincent Fretin | 8 Jul 11:43
Picon

Re: Final release of plone.app.locales for Plone 3.3

Hi,

The default message of the following msgid changed a little. You may
update your translation.
#. Default: "There is no upgrade procedure defined for this add-on.
Please consult the product documentation for upgrade information, or
contact the product author."
#: CMFPlone/skins/plone_prefs/prefs_install_products_form.pt:204
msgid "label_product_no_upgrade_action"

Please verify your translation is up to date
You have the raw stats below:

Number of languages: 62
Legend: translated (percentage) / fuzzy / untranslated = total
el	: 1681 (69.12%) / 75 / 676 = 2432
	atcontenttypes: 167/4/2 = 173
	atreferencebrowserwidget: 16/1/0 = 17
	linguaplone: 18/1/24 = 43
	plone: 1324/62/455 = 1841
	passwordresettool: 27/0/0 = 27
	cmfplacefulworkflow: 0/1/47 = 48
	cmfeditions: 50/2/16 = 68
	kupu: 31/4/132 = 167
	/!\ kupuconfig file missing
	plonelocales: 48/0/0 = 48
	/!\ plonefrontpage file missing

eo	: 1855 (75.93%) / 85 / 503 = 2443
	atcontenttypes: 166/3/4 = 173
(Continue reading)

TsungWei Hu | 8 Jul 17:50
Picon
Gravatar

Re: Final release of plone.app.locales for Plone 3.3

Thanks for the notice, and zh-tw PO is up to date.

Cheers! marr

On Wed, Jul 8, 2009 at 5:43 PM, Vincent Fretin <vincent.fretin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
Hi,

The default message of the following msgid changed a little. You may
update your translation.
#. Default: "There is no upgrade procedure defined for this add-on.
Please consult the product documentation for upgrade information, or
contact the product author."
#: CMFPlone/skins/plone_prefs/prefs_install_products_form.pt:204
msgid "label_product_no_upgrade_action"

Please verify your translation is up to date


------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Plone-i18n mailing list
Plone-i18n@...
https://lists.sourceforge.net/lists/listinfo/plone-i18n
Vincent Fretin | 12 Jul 14:05
Picon

Re: Final release of plone.app.locales for Plone 3.3

Hi,

The plone.app.locales 3.3.2 will be included in Plone 3.3

plone.app.locales 3.3.3 will be included in Plone 3.3.1, but you can
use it before of course as usual.

I didn't do the release before I leave.
I'm on the road right now with my eeepc and my 3g. :-)

I figured it out you actually update your translation when I put a
deadline. So the deadline for yesterday was a fake deadline. It was on
purpose. I'm kidding. :-)
I will do the new release when I come back, the 27th July.

When I come back, I will start to synchronize translations for Plone 4.
And I will do the i18n part of the amberjack PLIP. I count on all
translators to translate all tours!

Cheers
Vincent Fretin

------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge  
This is your chance to win up to $100,000 in prizes! For a limited time, 
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize  
details at: http://p.sf.net/sfu/Challenge
Vincent Fretin | 28 Jul 08:31
Picon

Re: Final release of plone.app.locales for Plone 3.3

Hi,

I did the release of plone.app.locales 3.3.3. This version will be
included in Plone 3.3.1.
As usual, you can use this version with Plone 3.2.x and 3.3.x.

Cheers

Vincent Fretin
Ecreall
Site : http://vincentfretin.ecreall.com

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
francoise | 28 Jul 09:00
Picon

query_string parameters when switching language


Hello,

My site has many Zope pages templates, Zope folders and also Plone pages,
Plone folders. 

This create problems for the navigation menu and also for translation but I
can't rewrite all the site now.

The query_string is used to pass parameters to Zope pages :
   http://myssite/teams?id=14&tab=members

My problem is that Plone Language Tool and LinguaPlone "loose" the
query_string parameters when switching language.

I found the following workarounds though it could get me into troubles but I
am really bothered by the query_string parameters lost.

1. Plone Language Tool 
   I customized switchLanguage.py in the ZMI

   replaced :
      qst="?"
      for k, v in query.items():

   by :
      qst="?"

      reqreferer = REQUEST['HTTP_REFERER'].split('?')
      if len(reqreferer) > 1:
         for p in reqreferer[-1].split("&"):
             if (p.find('set_language') == -1) and (p.find('cl=') == -1):
                qst += p + "&"

      for k, v in query.items():

2. LinguaPlone
   I modified LinguaPlone/browser/selector.py

   replaced :
      try:
          data['url'] = state.view_url() + '?set_language=' + data['code']
      except AttributeError:

   by :
      try:
          # Rebuild query_string
          qst = ""

          if self.request is not None and self.request.form is not None:
             form = self.request.form
             for k,v in form.items():
                 if k != "-C" and k != "set_language":  # Empty forms
                      qst += "&%s=%s" % (k,v)

          elif self.request is not None and self.request['HTTP_REFERER'] is
not None:
             reqreferer = self.request['HTTP_REFERER'].split('?')
             if len(reqreferer) > 1:
                for p in reqreferer[-1].split("&"):
                   if (p.find('set_language') == -1) and (p.find('cl=') ==
-1):
                      qst += "&" + p

          data['url'] = state.view_url() + '?set_language=' + data['code'] +
qst
      except AttributeError:

Regards
--

-- 
View this message in context: http://n2.nabble.com/query_string--parameters-when-switching-language-tp3339774p3339774.html
Sent from the Internationalization mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
francoise | 28 Jul 09:58
Picon

Re: query_string parameters when switching language


I forgot a few details : I am using Plone-3.2.3 and LinguaPlone 2.4
--

-- 
View this message in context: http://n2.nabble.com/query_string--parameters-when-switching-language-tp3339774p3340263.html
Sent from the Internationalization mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
Weisglass Ofer | 30 Jul 23:24
Picon

[Plone-Users] Reminder- Tune-Up Day is Friday!-Friday, July 31st, 2009

[Plone-Users] Reminder- Tune-Up Day is Friday!





---------- Forwarded message ----------
From: JoAnna Springsteen <joanna <at> sixfeetup.com>
Date: 2009/7/30
Subject: [Plone-Users] Reminder- Tune-Up Day is Friday!
To: plone-users-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org, plone-developers-5NWGOfrQmndRYHbF4JBHZw@public.gmane.orgge.net


Just a reminder that Tune-Up Day is tomorrow. Please join us!

--------------------------------------
18TH PLONE TUNE-UP
Friday, July 31st, 2009
9am-6pm (US ET)/ 15h-Midnight (GMT +1)
http://plone-tuneup.ning.com
View tickets for this Tune-Up: http://dev.plone.org/plone/report/28
View the list of other tickets you could work on: http://tinyurl.com/dx43p7
--------------------------------------

WHAT'S UP?

* Andrew Mleczko has graciously volunteered to help coordinate the Tune-Up during hours that are sane for Europeans. You can ping Andrew in the #plone-tuneup chat room if you need help or have questions. Thanks and Welcome Andrew!


* We still have tickets to commit:

http://dev.plone.org/plone/ticket/9019
http://dev.plone.org/plone/ticket/8827
http://dev.plone.org/plone/ticket/9046
http://dev.plone.org/plone/ticket/5907
http://dev.plone.org/plone/ticket/9031

Some of these tickets have been hanging around for awhile. If you have  
commit rights and want to commit these, please do so!


* We have a few tickets that need some testing and QA:

http://dev.plone.org/plone/ticket/9163
http://dev.plone.org/plone/ticket/9111
http://dev.plone.org/plone/ticket/8755

We always need senior developers to help test and provide guidance.

* None of the tickets interest you? We can always find more! Take a  
look at the 3.x bugs, pick one you like, and tag it with the TuneUp  
keyword.


HOW TO GET STARTED
-> On Tune-Up day, go to #plone-tuneup on irc and ask for a ticket to  
work on if you don't know which one to pick;
-> Once you have chosen a ticket, be sure to "accept" it. If you  
can't, review the process to get commit rights at http://dev.plone.org/plone/wiki/ContributeCode
-> Get the buildout at http://svn.plone.org/svn/plone/buildouts/plone-coredev/branches/3.2
-> Paste error messages and code to http://paste.plone.org/


WIN A TUNE-UP T-SHIRT!
A winner will be selected among the July 31st Plone Tuners. He or she  
will receive a one-of-a-kind, limited printing "Plone Tune-Up" t-shirt.

ABOUT
Plone Tune-Ups are regular online events that aim at addressing  
tickets in the Plone issue tracker and advancing the Plone open source  
Content Management System in general.



JoAnna Springsteen

--
S i x  F e e t  U p ,  I n c .  |  http://www.sixfeetup.com
Phone: +1 (317) 861-5948 x615
joanna <at> ...
ANNOUNCING the first Plone Immersive Training Experience | Sept.  
10-11-12, 2009
http://www.sixfeetup.com/immerse






Also hope to have people work on i18n effort and update the translation files.
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Plone-i18n mailing list
Plone-i18n@...
https://lists.sourceforge.net/lists/listinfo/plone-i18n

Gmane