diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-02-09 08:42:13 +0000 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-02-09 08:42:13 +0000 |
commit | dce6548431c4d61ab6c532375a0f030d8de72fd1 (patch) | |
tree | 2f39eda105cc270f80580452ab36fac72b6a1375 /installer/init_var.php | |
parent | fa1f49d99a30a029d1a4e09b820c639d639f6283 (diff) |
Add local localization functionality. Local = no means to upload / download translations to a translation server yet.
- Added an outgoing_translations table to store translations from the local translation UI.
- I18n class is checking incoming_ and outgoing_translations for translations, giving the latter priority.
- Not handling plural strings in the translations UI yet.
Diffstat (limited to 'installer/init_var.php')
-rw-r--r-- | installer/init_var.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/installer/init_var.php b/installer/init_var.php index 94dd5c67..b0f0d5db 100644 --- a/installer/init_var.php +++ b/installer/init_var.php @@ -1,8 +1,8 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> <?php !file_exists(VARPATH . "albums") && mkdir(VARPATH . "albums"); -!file_exists(VARPATH . "resizes") && mkdir(VARPATH . "resizes"); -!file_exists(VARPATH . "thumbs") && mkdir(VARPATH . "thumbs"); -!file_exists(VARPATH . "logs") && mkdir(VARPATH . "logs"); !file_exists(VARPATH . "uploads") && mkdir(VARPATH . "uploads"); !file_exists(VARPATH . "modules") && mkdir(VARPATH . "modules"); +!file_exists(VARPATH . "resizes") && mkdir(VARPATH . "resizes"); +!file_exists(VARPATH . "logs") && mkdir(VARPATH . "logs"); +!file_exists(VARPATH . "thumbs") && mkdir(VARPATH . "thumbs"); |