diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-02-19 19:30:18 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-02-19 19:30:18 +0000 |
| commit | 9bf17da9d7958dbe089f0efb12694fb581db6023 (patch) | |
| tree | e9a386d441caae9818fe3fe94874e79c0c0abe8e /admin | |
| parent | d30805bdc4d1bd1ed43a05d16351e8d03fff5e58 (diff) | |
| download | languages-9bf17da9d7958dbe089f0efb12694fb581db6023.tar.gz languages-9bf17da9d7958dbe089f0efb12694fb581db6023.tar.bz2 languages-9bf17da9d7958dbe089f0efb12694fb581db6023.zip | |
more translation work. can't work out why associateInsert isn't doing anything
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/schema_inc.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/admin/schema_inc.php b/admin/schema_inc.php index 3e7a14f..5776f3b 100644 --- a/admin/schema_inc.php +++ b/admin/schema_inc.php @@ -52,9 +52,14 @@ $indices = array ( 'i18n_version_src_idx' => array( 'table' => 'i18n_version_map', 'cols' => 'source_hash', 'opts' => NULL ), 'i18n_version_ver_idx' => array( 'table' => 'i18n_version_map', 'cols' => 'version', 'opts' => NULL ), ); - $gBitInstaller->registerSchemaIndexes( LANGUAGES_PKG_NAME, $indices ); +// ### Sequences +$sequences = array ( + 'i18n_content_trans_id_seq' => array( 'start' => 1 ), +); +$gBitInstaller->registerSchemaSequences( LIBERTY_PKG_NAME, $sequences ); + $gBitInstaller->registerPackageInfo( LANGUAGES_PKG_NAME, array( 'description' => "This package allows you to translate your site into a different language.", 'license' => '<a href="http://www.gnu.org/licenses/licenses.html#LGPL">LGPL</a>', |
