mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-19 19:09:13 -04:00
- 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.
9 lines
449 B
PHP
9 lines
449 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<?php
|
|
!file_exists(VARPATH . "albums") && mkdir(VARPATH . "albums");
|
|
!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");
|