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 | |
parent | 4a5ee765cf5030c7d92d88687e886079f6bafb1e (diff) | |
download | nextcloud-server-b2768637d2748a1d55ee98a9809c66e135a4190a.tar.gz nextcloud-server-b2768637d2748a1d55ee98a9809c66e135a4190a.zip |
updated translations
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/installation.php | 8 | ||||
-rw-r--r-- | core/templates/layout.guest.php | 2 |
2 files changed, 5 insertions, 5 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> diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index 21388509f35..42c2539af13 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -35,6 +35,6 @@ </div></header> <?php echo $_['content']; ?> </div> - <footer><p class="info"><?php echo $l->t( '<a href="http://owncloud.org/">ownCloud</a> is a personal cloud which runs on your own server.</p>' ); ?></p></footer> + <footer><p class="info"><a href="http://owncloud.org/">ownCloud</a> <?php echo $l->t( 'is a personal cloud which runs on your own server' ); ?>.</p></footer> </body> </html> |