[Mahara-contributors] [Bug 1681282] Re: warning message when using japanese language pack

2017-04-20 Thread Robert Lyon
** Changed in: mahara/17.10
Milestone: 17.10.0 => None

** Changed in: mahara
Milestone: 17.04.0 => None

** Changed in: mahara
   Status: In Progress => Invalid

** Changed in: mahara/17.10
   Status: Confirmed => Invalid

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1681282

Title:
  warning message when using japanese language pack

Status in Mahara:
  Invalid
Status in Mahara 17.10 series:
  Invalid

Bug description:
  Install japanese language pack
  go to admin/index.php
  refresh the page

  you will see a warning message:
   [WAR] b4 (lib/mahara.php:1470) sprintf(): Too few arguments

  This is happening because the function sprintf has a string parameter
  containing a '%' symbol that makes the function expect an extra
  string, but the symbol is in fact part of an URL.

  
  parameter string: 
   Cronが動作していません。cronのセットアップに関するインストラクションはhttps://wiki.mahara.org/wiki/System_Administrator%27s_Guide/Installing_Mahara";>installation
 guideをご覧ください。あなたがすでにcronをセットアップしている場合、直近の1つまたはそれ以上の処理が正しく実行されませんでした。

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1681282/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1681282] Re: warning message when using japanese language pack

2017-04-17 Thread Aaron Wells
Hi all,

Mahara language strings are actually sprintf() format strings. That's
why the placeholder is "%s". Thus if you want to print a literal "%"
character, you have to sprintf-escape it by doing two of them: "%%".

So the fix here is to update the Japanese language pack so that this
language-string has a %% instead of a %.

Cronが動作していません。cronのセットアップに関するインストラクションはhttps://wiki.mahara.org/wiki/System_Administrator%%27s_Guide/Installing_Mahara";>installation
guideをご覧ください。あなたがすでにcronをセットアップしている場合、直近の1つまたはそれ以上の処理が正しく実行されませんでした。

... or in this case, you could alternately update the Japanese language
pack to replace the "%27" with a an apostrophe "'". That's what we did
in the English language pack, as a less-brittle fix for this particular
string.

I'll update the wiki page about lang strings (
https://wiki.mahara.org/wiki/Developer_Area/Language_strings#Plural_strings
). Currently it mentions sprintf(), but it doesn't explicitly say that
lang strings are sprintf() format strings, or that you have to escape
literal % characters.

Cheers,
Aaron

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1681282

Title:
  warning message when using japanese language pack

Status in Mahara:
  In Progress
Status in Mahara 17.10 series:
  Confirmed

Bug description:
  Install japanese language pack
  go to admin/index.php
  refresh the page

  you will see a warning message:
   [WAR] b4 (lib/mahara.php:1470) sprintf(): Too few arguments

  This is happening because the function sprintf has a string parameter
  containing a '%' symbol that makes the function expect an extra
  string, but the symbol is in fact part of an URL.

  
  parameter string: 
   Cronが動作していません。cronのセットアップに関するインストラクションはhttps://wiki.mahara.org/wiki/System_Administrator%27s_Guide/Installing_Mahara";>installation
 guideをご覧ください。あなたがすでにcronをセットアップしている場合、直近の1つまたはそれ以上の処理が正しく実行されませんでした。

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1681282/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1681282] Re: warning message when using japanese language pack

2017-04-17 Thread Aaron Wells
Oh yeah, here's the PHP documentation page about sprintf(). The "%%"
part is obscurely explained there as:

 Each conversion specification consists of a percent sign (%), followed by one 
or more of these elements, in order:
 ...
 6. A type specifier that says what type the argument data should be treated 
as. Possible types:
% - a literal percent character. No argument is required.

They do make it a bit clearer in one of the examples where there's a
code comment that says "// notice the double %%, this prints a literal
'%' character".

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1681282

Title:
  warning message when using japanese language pack

Status in Mahara:
  In Progress
Status in Mahara 17.10 series:
  Confirmed

Bug description:
  Install japanese language pack
  go to admin/index.php
  refresh the page

  you will see a warning message:
   [WAR] b4 (lib/mahara.php:1470) sprintf(): Too few arguments

  This is happening because the function sprintf has a string parameter
  containing a '%' symbol that makes the function expect an extra
  string, but the symbol is in fact part of an URL.

  
  parameter string: 
   Cronが動作していません。cronのセットアップに関するインストラクションはhttps://wiki.mahara.org/wiki/System_Administrator%27s_Guide/Installing_Mahara";>installation
 guideをご覧ください。あなたがすでにcronをセットアップしている場合、直近の1つまたはそれ以上の処理が正しく実行されませんでした。

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1681282/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1681282] Re: warning message when using japanese language pack

2017-04-10 Thread Kristina Hoeppner
** Also affects: mahara/17.10
   Importance: Undecided
   Status: New

** Changed in: mahara/17.10
   Status: New => Confirmed

** Changed in: mahara/17.10
Milestone: None => 17.10.0

** Changed in: mahara/17.10
   Importance: Undecided => Medium

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1681282

Title:
  warning message when using japanese language pack

Status in Mahara:
  In Progress
Status in Mahara 17.10 series:
  Confirmed

Bug description:
  Install japanese language pack
  go to admin/index.php
  refresh the page

  you will see a warning message:
   [WAR] b4 (lib/mahara.php:1470) sprintf(): Too few arguments

  This is happening because the function sprintf has a string parameter
  containing a '%' symbol that makes the function expect an extra
  string, but the symbol is in fact part of an URL.

  
  parameter string: 
   Cronが動作していません。cronのセットアップに関するインストラクションはhttps://wiki.mahara.org/wiki/System_Administrator%27s_Guide/Installing_Mahara";>installation
 guideをご覧ください。あなたがすでにcronをセットアップしている場合、直近の1つまたはそれ以上の処理が正しく実行されませんでした。

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1681282/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1681282] Re: warning message when using japanese language pack

2017-04-09 Thread Cecilia Vela Gurovic
** Also affects: mahara/trunk
   Importance: Undecided
   Status: New

** No longer affects: mahara/trunk

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1681282

Title:
  warning message when using japanese language pack

Status in Mahara:
  In Progress

Bug description:
  Install japanese language pack
  go to admin/index.php
  refresh the page

  you will see a warning message:
   [WAR] b4 (lib/mahara.php:1470) sprintf(): Too few arguments

  This is happening because the function sprintf has a string parameter
  containing a '%' symbol that makes the function expect an extra
  string, but the symbol is in fact part of an URL.

  
  parameter string: 
   Cronが動作していません。cronのセットアップに関するインストラクションはhttps://wiki.mahara.org/wiki/System_Administrator%27s_Guide/Installing_Mahara";>installation
 guideをご覧ください。あなたがすでにcronをセットアップしている場合、直近の1つまたはそれ以上の処理が正しく実行されませんでした。

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1681282/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1681282] Re: warning message when using japanese language pack

2017-04-09 Thread Robert Lyon
** Changed in: mahara
   Importance: Undecided => Medium

** Changed in: mahara
Milestone: 17.04.1 => 17.04.0

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: Subscription for all Mahara Contributors -- please ask 
on #mahara-dev or mahara.org forum before editing or unsubscribing it!
https://bugs.launchpad.net/bugs/1681282

Title:
  warning message when using japanese language pack

Status in Mahara:
  In Progress
Status in Mahara trunk series:
  New

Bug description:
  Install japanese language pack
  go to admin/index.php
  refresh the page

  you will see a warning message:
   [WAR] b4 (lib/mahara.php:1470) sprintf(): Too few arguments

  This is happening because the function sprintf has a string parameter
  containing a '%' symbol that makes the function expect an extra
  string, but the symbol is in fact part of an URL.

  
  parameter string: 
   Cronが動作していません。cronのセットアップに関するインストラクションはhttps://wiki.mahara.org/wiki/System_Administrator%27s_Guide/Installing_Mahara";>installation
 guideをご覧ください。あなたがすでにcronをセットアップしている場合、直近の1つまたはそれ以上の処理が正しく実行されませんでした。

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1681282/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp