Trigone | 1 Aug 2012 10:15
Picon

Re: New french language file, completed and corrected (0.9.9.7)

Hi dxerty.
Thanks a lot for this contribution!

I didn't notice that those 3 strings were missing in the french file.
I just integrated them, with a few corrections:

- don't forget to escape all quotes to avoid syntax errors ('Vous n'avez pas...' => 'Vous n\'avez pas...')
- "... devez vous connectez" => "... devez vous connecter"
- "... de connexion infructueuses!." => "de connexion infructueuses !"
(Note that we can simplify "tentatives de connexion infructueuses" into "échecs de connexion": much shorter and same meaning.)

The new file is attached.

Le mardi 31 juillet 2012 03:29:53 UTC+2, dxerty a écrit :

'error101'                => 'Vous n'avez pas la permission de voir cette tâche.',
'error102'                => 'Vous n'avez pas la permission de voir cette tâche, vous devez vous connectez.',
'error71'                 => 'Compte verrouillé pendant %d minutes en raison de trop nombreuses tentatives de connexion infructueuses!.',

--
You received this message because you are subscribed to the Google Groups "flyspray" group.
To view this discussion on the web visit https://groups.google.com/d/msg/flyspray/-/qB_RN0TAX2wJ.
To post to this group, send email to flyspray-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to flyspray+unsubscribe <at> googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flyspray?hl=en.
Attachment (fr.php): application/x-httpd-php, 52 KiB
Scott H | 1 Aug 2012 16:26
Picon
Gravatar

Re: New french language file, completed and corrected (0.9.9.7)

Thanks for the update, I can apply it tonight (8+ hours from this posting) if no one else does by then.

On Wednesday, August 1, 2012 2:15:47 AM UTC-6, Trigone wrote:

Hi dxerty.
Thanks a lot for this contribution!

I didn't notice that those 3 strings were missing in the french file.
I just integrated them, with a few corrections:

- don't forget to escape all quotes to avoid syntax errors ('Vous n'avez pas...' => 'Vous n\'avez pas...')
- "... devez vous connectez" => "... devez vous connecter"
- "... de connexion infructueuses!." => "de connexion infructueuses !"
(Note that we can simplify "tentatives de connexion infructueuses" into "échecs de connexion": much shorter and same meaning.)

The new file is attached.

Le mardi 31 juillet 2012 03:29:53 UTC+2, dxerty a écrit :
'error101'                => 'Vous n'avez pas la permission de voir cette tâche.',
'error102'                => 'Vous n'avez pas la permission de voir cette tâche, vous devez vous connectez.',
'error71'                 => 'Compte verrouillé pendant %d minutes en raison de trop nombreuses tentatives de connexion infructueuses!.',

--
You received this message because you are subscribed to the Google Groups "flyspray" group.
To view this discussion on the web visit https://groups.google.com/d/msg/flyspray/-/CzycyArB7y4J.
To post to this group, send email to flyspray-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to flyspray+unsubscribe <at> googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flyspray?hl=en.
Scott H | 2 Aug 2012 18:11
Picon
Gravatar

Re: New french language file, completed and corrected (0.9.9.7)

this has been added to the latest.  Thanks.

On Wednesday, August 1, 2012 8:26:22 AM UTC-6, Scott H wrote:

Thanks for the update, I can apply it tonight (8+ hours from this posting) if no one else does by then.

On Wednesday, August 1, 2012 2:15:47 AM UTC-6, Trigone wrote:
Hi dxerty.
Thanks a lot for this contribution!

I didn't notice that those 3 strings were missing in the french file.
I just integrated them, with a few corrections:

- don't forget to escape all quotes to avoid syntax errors ('Vous n'avez pas...' => 'Vous n\'avez pas...')
- "... devez vous connectez" => "... devez vous connecter"
- "... de connexion infructueuses!." => "de connexion infructueuses !"
(Note that we can simplify "tentatives de connexion infructueuses" into "échecs de connexion": much shorter and same meaning.)

The new file is attached.

Le mardi 31 juillet 2012 03:29:53 UTC+2, dxerty a écrit :
'error101'                => 'Vous n'avez pas la permission de voir cette tâche.',
'error102'                => 'Vous n'avez pas la permission de voir cette tâche, vous devez vous connectez.',
'error71'                 => 'Compte verrouillé pendant %d minutes en raison de trop nombreuses tentatives de connexion infructueuses!.',

--
You received this message because you are subscribed to the Google Groups "flyspray" group.
To view this discussion on the web visit https://groups.google.com/d/msg/flyspray/-/37FdDlpatvEJ.
To post to this group, send email to flyspray-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to flyspray+unsubscribe <at> googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flyspray?hl=en.
stephe_FR | 7 Aug 2012 12:15
Picon
Favicon

solved issues with postgresql

I have installed Flyspray  0.9.9.7 with postgresql 8.4.11 and php 5.3.3.

I have faced the following issues:

  •  I had the following error message on top of the scereen:
"Deprecated: Function split() is deprecated in /var/www/html/flyspray/adodb/drivers/adodb-postgres64.inc.php on line 662"
I solved the issues in replacing the split function by explode in "adodb-postgres64.inc.php" file.

CREATE OR REPLACE FUNCTION get_format(text, text)

    • RETURNS text AS $$

        SELECT CASE lower($1)

                   WHEN 'date' THEN

                       CASE lower($2)

                           WHEN 'usa' THEN '%m.%d.%Y'

                           WHEN 'jis' THEN '%Y-%m-%d'

                           WHEN 'iso' THEN '%Y-%m-%d'

                           WHEN 'eur' THEN '%d.%m.%Y'

                           WHEN 'internal' THEN '%Y%m%d'

                       END

                   WHEN 'datetime' THEN

                       CASE lower($2)

                           WHEN 'usa' THEN '%Y-%m-%d %H-.%i.%s'

                           WHEN 'jis' THEN '%Y-%m-%d %H:%i:%s'

                           WHEN 'iso' THEN '%Y-%m-%d %H:%i:%s'

                           WHEN 'eur' THEN '%Y-%m-%d %H.%i.%s'

                           WHEN 'internal' THEN '%Y%m%d%H%i%s'

                       END

                   WHEN 'time' THEN

                       CASE lower($2)

                           WHEN 'usa' THEN '%h:%i:%s %p'

                           WHEN 'jis' THEN '%H:%i:%s'

                           WHEN 'iso' THEN '%H:%i:%s'

                           WHEN 'eur' THEN '%H.%i.%s'

                           WHEN 'internal' THEN '%H%i%s'

                       END

               END;

      $$ LANGUAGE sql;

       

      CREATE OR REPLACE FUNCTION str_to_date(text, text)RETURNS date AS $$  SELECT to_date($1, _mysqlf_pgsql($2))$$ LANGUAGE sql;

       


      CREATE OR REPLACE FUNCTION from_unixtime(INTEGER) RETURNS TIMESTAMP AS '        SELECT to_timestamp($1)::timestamp AS result' LANGUAGE 'SQL';



Regards,


--
You received this message because you are subscribed to the Google Groups "flyspray" group.
To view this discussion on the web visit https://groups.google.com/d/msg/flyspray/-/46X8ZCyR7C0J.
To post to this group, send email to flyspray-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To unsubscribe from this group, send email to flyspray+unsubscribe <at> googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flyspray?hl=en.
Sean Farrell | 13 Aug 2012 10:19
Picon

Login Dialog not visible on CleanFS (Solved)

Hello,

I just installed FS and had this real odd bug. With the CleanFS theme the login box won't appear. At first I
though it was an issue with crome, but the issue persists also with firefox. Then I looked if the bug was
already submited; as I was on http://bugs.flyspray.org/ I looked at the login box there... and it worked. 

After some research I found out that the server was trying to pull the JS scripts from
/usr/share/javascript. Somewhat baffled I greped for /usr/share and what would you know, there was a
javascript-common.conf in conf.d of the apache server that aliased /javascript. Disabling that solved
the issue. I don't know what I broke with that, but all seems to work fine.

This is a known issue at debian, but still agravating; wanted to give you all a heads up.

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474913

--

-- 
You received this message because you are subscribed to the Google Groups "flyspray" group.
To view this discussion on the web visit https://groups.google.com/d/msg/flyspray/-/AcCxbOU-BHEJ.
To post to this group, send email to flyspray@...
To unsubscribe from this group, send email to flyspray+unsubscribe <at> googlegroups.com.
For more options, visit this group at http://groups.google.com/group/flyspray?hl=en.


Gmane