Update generation of YAML files

* need lower case in some places
* update target path

Not in production yet at translatewiki.net - need some Translate extension code changes to get YAML config support for Gettext first.
This commit is contained in:
Siebrand Mazeland 2010-01-13 23:33:05 +01:00
parent 108c51fa68
commit 519e1e6250
1 changed files with 6 additions and 6 deletions

View File

@ -80,20 +80,21 @@ function do_translatewiki_plugin($basedir, $plugin)
mkdir($yamldir); mkdir($yamldir);
} }
$outfile = "$yamldir/StatusNet-{$plugin}.yml"; $outfile = "$yamldir/StatusNet-{$plugin}.yml";
$pluginlc = strtolower( $plugin );
$data = <<<END $data = <<<END
--- ---
BASIC: BASIC:
id: out-statusnet-{$plugin} id: out-statusnet-{$pluginlc}
label: StatusNet - {$plugin} label: StatusNet - {$plugin}
description: "{{int:bw-desc-statusnet-plugin-{$plugin}}}" description: "{{int:bw-desc-statusnet-plugin-{$pluginlc}}}"
namespace: NS_STATUSNET namespace: NS_STATUSNET
display: out/statusnet/{$plugin} display: out/statusnet/{$pluginlc}
class: GettextMessageGroup class: GettextMessageGroup
FILES: FILES:
class: GettextFFS class: GettextFFS
sourcePattern: %GROUPROOT%/plugins/{$plugin}/locale/%CODE%/LC_MESSAGES/{$plugin}.po sourcePattern: %GROUPROOT%/plugins/{$plugin}/locale/%CODE%/LC_MESSAGES/{$plugin}.po
targetPattern: {$plugin}.po targetPattern: plugins/{$plugin}/locale/%CODE%/LC_MESSAGES/{$plugin}.po
codeMap: codeMap:
en-gb: en_GB en-gb: en_GB
no: nb no: nb
@ -103,7 +104,7 @@ FILES:
MANGLER MANGLER
class: StringMatcher class: StringMatcher
prefix: {$plugin}- prefix: {$pluginlc}-
patterns: patterns:
- "*" - "*"
@ -208,4 +209,3 @@ if ($plugins) {
} }
} }
} }