summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaun McCance <shaunm@src.gnome.org>2006-04-15 21:07:36 +0000
committerShaun McCance <shaunm@src.gnome.org>2006-04-15 21:07:36 +0000
commit22a3eae0f0a3afb0e6740f96b910524fd759cf48 (patch)
tree0b5fa0db70367b26b1fed9a71f560656f9101c4a
parent62af4df1e600b68dcf9ae4dc81960b1c70eb391b (diff)
downloadgnome-doc-utils-22a3eae0f0a3afb0e6740f96b910524fd759cf48.tar.gz
- Fixed plurals for fr, wa, nso (bug #338641)
* xslt/gettext/gettext.xsl: - Fixed plurals for fr, wa, nso (bug #338641)
-rw-r--r--ChangeLog5
-rw-r--r--xslt/gettext/gettext.xsl4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 96aaa9a..adbb120 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-04-15 Shaun McCance <shaunm@gnome.org>
+
+ * xslt/gettext/gettext.xsl:
+ - Fixed plurals for fr, wa, nso (bug #338641)
+
2006-03-29 Rhys Jones <rhys@sucs.org>
* configure.in: Added Welsh (cy) to ALL_LINGUAS.
diff --git a/xslt/gettext/gettext.xsl b/xslt/gettext/gettext.xsl
index c31f611..5389a7f 100644
--- a/xslt/gettext/gettext.xsl
+++ b/xslt/gettext/gettext.xsl
@@ -700,10 +700,10 @@ Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
($lang_language = 'wa') ">
<xsl:choose>
<xsl:when test="$number &gt; 1">
- <xsl:text>0</xsl:text>
+ <xsl:text>1</xsl:text>
</xsl:when>
<xsl:otherwise>
- <xsl:text>1</xsl:text>
+ <xsl:text>0</xsl:text>
</xsl:otherwise>
</xsl:choose>
</xsl:when>