[yelp-xsl] l10n.xsl: Fix calls to no-longer-there $lang_language
- From: Shaun McCance <shaunm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [yelp-xsl] l10n.xsl: Fix calls to no-longer-there $lang_language
- Date: Sat, 21 Apr 2012 13:44:57 +0000 (UTC)
commit 7aef423f7282dff38368384d463078cc44f28c6d
Author: Shaun McCance <shaunm gnome org>
Date: Sat Apr 21 09:44:15 2012 -0400
l10n.xsl: Fix calls to no-longer-there $lang_language
It's like I just stopped porting this template halfway through
xslt/common/l10n.xsl | 23 +++++++++--------------
1 files changed, 9 insertions(+), 14 deletions(-)
---
diff --git a/xslt/common/l10n.xsl b/xslt/common/l10n.xsl
index 4ca0e33..27823d5 100644
--- a/xslt/common/l10n.xsl
+++ b/xslt/common/l10n.xsl
@@ -366,10 +366,6 @@ l10n.plural.form
Extracts he plural form string for a given cardinality
$number: The cardinality of the plural form
$lang: The locale to use when looking up the translated string
-$lang_language: The language portion of the ${lang}
-$lang_region: The region portion of ${lang}
-$lang_variant: The variant portion of ${lang}
-$lang_charset: The charset portion of ${lang}
REMARK: Lots of documentation is needed
-->
@@ -431,7 +427,7 @@ REMARK: Lots of documentation is needed
</xsl:when>
<!-- == cy == -->
- <xsl:when test="$lang_language = 'cy'">
+ <xsl:when test="starts-with($normlang, 'cy-')">
<xsl:choose>
<xsl:when test="$number != 2">
<xsl:text>0</xsl:text>
@@ -443,16 +439,15 @@ REMARK: Lots of documentation is needed
</xsl:when>
<!-- == fa hu ja ko th tr vi zh == -->
- <xsl:when test="($lang_language = 'fa') or ($lang_language = 'hu') or
- ($lang_language = 'ja') or ($lang_language = 'ko') or
- ($lang_language = 'th') or ($lang_language = 'tr') or
- ($lang_language = 'vi') or ($lang_language = 'zh') ">
+ <xsl:when test="starts-with($normlang, 'ja-') or starts-with($normlang, 'ko-') or
+ starts-with($normlang, 'th-') or starts-with($normlang, 'tr-') or
+ starts-with($normlang, 'vi-') or starts-with($normlang, 'zh-') ">
<xsl:text>0</xsl:text>
</xsl:when>
<!-- == fr nso wa == -->
- <xsl:when test="($lang_language = 'fr') or ($lang_language = 'nso') or
- ($lang_language = 'wa') ">
+ <xsl:when test="starts-with($normlang, 'fr-') or starts-with($normlang, 'nso-') or
+ starts-with($normlang, 'wa-') ">
<xsl:choose>
<xsl:when test="$number > 1">
<xsl:text>1</xsl:text>
@@ -464,7 +459,7 @@ REMARK: Lots of documentation is needed
</xsl:when>
<!-- == ga == -->
- <xsl:when test="$lang_language = 'ga'">
+ <xsl:when test="starts-with($normlang, 'ga-')">
<xsl:choose>
<xsl:when test="$number = 1">
<xsl:text>0</xsl:text>
@@ -479,7 +474,7 @@ REMARK: Lots of documentation is needed
</xsl:when>
<!-- == sk == -->
- <xsl:when test="$lang_language = 'sk'">
+ <xsl:when test="starts-with($normlang, 'sk-')">
<xsl:choose>
<xsl:when test="$number = 1">
<xsl:text>0</xsl:text>
@@ -494,7 +489,7 @@ REMARK: Lots of documentation is needed
</xsl:when>
<!-- == sl == -->
- <xsl:when test="$lang_language = 'sl'">
+ <xsl:when test="starts-with($normlang, 'sl-')">
<xsl:choose>
<xsl:when test="$number mod 100 = 1">
<xsl:text>0</xsl:text>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]