Skip to content

Commit

Permalink
Updated printablesurvey.php - the word "or" in the conditions explana…
Browse files Browse the repository at this point in the history
…tion was still hard-coded. Added new translation in public language files and updated.

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@1110 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Jul 31, 2004
1 parent 35ce52e commit 332f4a8
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion admin/printablesurvey.php
Expand Up @@ -170,7 +170,7 @@
}
if (count($conditions) > 1)
{
$explanation .= "'".implode("' or '", $conditions)."'";
$explanation .= "'".implode("' "._PS_CON_OR." '", $conditions)."'";
}
else
{
Expand Down
1 change: 1 addition & 0 deletions lang/chinese.lang.php
Expand Up @@ -185,4 +185,5 @@
define("_PS_CON_IFYOU", "if you answered"); //New for 0.98finalRC1
define("_PS_CON_JOINER", "and"); //New for 0.98finalRC1
define("_PS_CON_TOQUESTION", "to question"); //New for 0.98finalRC1
define("_PS_CON_OR", "or"); //New for 0.98finalRC2
?>
1 change: 1 addition & 0 deletions lang/danish.lang.php
Expand Up @@ -187,4 +187,5 @@
define("_PS_CON_IFYOU", "if you answered"); //New for 0.98finalRC1
define("_PS_CON_JOINER", "and"); //New for 0.98finalRC1
define("_PS_CON_TOQUESTION", "to question"); //New for 0.98finalRC1
define("_PS_CON_OR", "or"); //New for 0.98finalRC2
?>
2 changes: 1 addition & 1 deletion lang/english.lang.php
Expand Up @@ -183,5 +183,5 @@
define("_PS_CON_IFYOU", "if you answered"); //New for 0.98finalRC1
define("_PS_CON_JOINER", "and"); //New for 0.98finalRC1
define("_PS_CON_TOQUESTION", "to question"); //New for 0.98finalRC1

define("_PS_CON_OR", "or"); //New for 0.98finalRC2
?>
1 change: 1 addition & 0 deletions lang/french.lang.php
Expand Up @@ -189,4 +189,5 @@
define("_PS_CON_IFYOU", "if you answered"); //New for 0.98finalRC1
define("_PS_CON_JOINER", "and"); //New for 0.98finalRC1
define("_PS_CON_TOQUESTION", "to question"); //New for 0.98finalRC1
define("_PS_CON_OR", "or"); //New for 0.98finalRC2
?>
1 change: 1 addition & 0 deletions lang/hungarian.lang.php
Expand Up @@ -189,4 +189,5 @@
define("_PS_CON_IFYOU", "if you answered"); //New for 0.98finalRC1
define("_PS_CON_JOINER", "and"); //New for 0.98finalRC1
define("_PS_CON_TOQUESTION", "to question"); //New for 0.98finalRC1
define("_PS_CON_OR", "or"); //New for 0.98finalRC2
?>
1 change: 1 addition & 0 deletions lang/italian.lang.php
Expand Up @@ -187,4 +187,5 @@
define("_PS_CON_IFYOU", "if you answered"); //New for 0.98finalRC1
define("_PS_CON_JOINER", "and"); //New for 0.98finalRC1
define("_PS_CON_TOQUESTION", "to question"); //New for 0.98finalRC1
define("_PS_CON_OR", "or"); //New for 0.98finalRC2
?>
1 change: 1 addition & 0 deletions lang/norwegian.lang.php
Expand Up @@ -187,4 +187,5 @@
define("_PS_CON_IFYOU", "if you answered"); //New for 0.98finalRC1
define("_PS_CON_JOINER", "and"); //New for 0.98finalRC1
define("_PS_CON_TOQUESTION", "to question"); //New for 0.98finalRC1
define("_PS_CON_OR", "or"); //New for 0.98finalRC2
?>
1 change: 1 addition & 0 deletions lang/simplified-chinese.lang.php
Expand Up @@ -185,4 +185,5 @@
define("_PS_CON_IFYOU", "if you answered"); //New for 0.98finalRC1
define("_PS_CON_JOINER", "and"); //New for 0.98finalRC1
define("_PS_CON_TOQUESTION", "to question"); //New for 0.98finalRC1
define("_PS_CON_OR", "or"); //New for 0.98finalRC2
?>
1 change: 1 addition & 0 deletions lang/slovenian.lang.php
Expand Up @@ -189,4 +189,5 @@
define("_PS_CON_IFYOU", "if you answered"); //New for 0.98finalRC1
define("_PS_CON_JOINER", "and"); //New for 0.98finalRC1
define("_PS_CON_TOQUESTION", "to question"); //New for 0.98finalRC1
define("_PS_CON_OR", "or"); //New for 0.98finalRC2
?>
1 change: 1 addition & 0 deletions lang/spanish.lang.php
Expand Up @@ -179,4 +179,5 @@
define("_PS_CON_IFYOU", "if you answered"); //New for 0.98finalRC1
define("_PS_CON_JOINER", "and"); //New for 0.98finalRC1
define("_PS_CON_TOQUESTION", "to question"); //New for 0.98finalRC1
define("_PS_CON_OR", "or"); //New for 0.98finalRC2
?>
1 change: 1 addition & 0 deletions lang/swedish.lang.php
Expand Up @@ -189,4 +189,5 @@
define("_PS_CON_IFYOU", "if you answered"); //New for 0.98finalRC1
define("_PS_CON_JOINER", "and"); //New for 0.98finalRC1
define("_PS_CON_TOQUESTION", "to question"); //New for 0.98finalRC1
define("_PS_CON_OR", "or"); //New for 0.98finalRC2
?>

0 comments on commit 332f4a8

Please sign in to comment.