diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-13 05:13:10 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-13 05:13:35 +0200 |
commit | b2768637d2748a1d55ee98a9809c66e135a4190a (patch) | |
tree | 6db7f75b56d689c5c08cce986a62bcaf5248210c /core/templates/installation.php | |
parent | 4a5ee765cf5030c7d92d88687e886079f6bafb1e (diff) | |
download | nextcloud-server-b2768637d2748a1d55ee98a9809c66e135a4190a.tar.gz nextcloud-server-b2768637d2748a1d55ee98a9809c66e135a4190a.zip |
updated translations
Diffstat (limited to 'core/templates/installation.php')
-rw-r--r-- | core/templates/installation.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 4371c4b17b1..ebd726b4fb9 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -29,18 +29,18 @@ <?php if($_['hasSQLite']): ?> <input type='hidden' id='hasSQLite' value='true' /> <?php if(!$hasOtherDB): ?> - <p><?php echo $l->t( 'SQLite will be used.' ); ?></p> + <p>SQLite <?php echo $l->t( 'will be used' ); ?>.</p> <input type="hidden" id="dbtype" name="dbtype" value="sqlite" /> <?php else: ?> <input type="radio" name="dbtype" value='sqlite' id="sqlite" <?php OC_Helper::init_radio('dbtype', 'sqlite', 'sqlite'); ?>/> - <label class="sqlite" for="sqlite"><?php echo $l->t( 'SQLite' ); ?></label> + <label class="sqlite" for="sqlite">SQLite</label> <?php endif; ?> <?php endif; ?> <?php if($_['hasMySQL']): ?> <input type='hidden' id='hasMySQL' value='true'/> <?php if(!$_['hasSQLite'] and !$_['hasPostgreSQL']): ?> - <p><?php echo $l->t( 'MySQL will be used.' ); ?></p> + <p>MySQL <?php echo $l->t( 'will be used' ); ?>.</p> <input type="hidden" id="dbtype" name="dbtype" value="mysql" /> <?php else: ?> <input type="radio" name="dbtype" value='mysql' id="mysql" <?php OC_Helper::init_radio('dbtype','pgsql', 'mysql', 'sqlite'); ?>/> @@ -50,7 +50,7 @@ <?php if($_['hasPostgreSQL']): ?> <?php if(!$_['hasSQLite'] and !$_['hasMySQL']): ?> - <p><?php echo $l->t( 'PostgreSQL will be used.' ); ?></p> + <p>PostgreSQL <?php echo $l->t( 'will be used' ); ?>.</p> <input type="hidden" id="dbtype" name="dbtype" value="pgsql" /> <?php else: ?> <label class="pgsql" for="pgsql">PostgreSQL</label> |