]> source.dussan.org Git - nextcloud-server.git/commitdiff
More l10n-stuff
authorJakob Sack <kde@jakobsack.de>
Sun, 19 Jun 2011 21:33:34 +0000 (23:33 +0200)
committerJakob Sack <kde@jakobsack.de>
Sun, 19 Jun 2011 21:33:34 +0000 (23:33 +0200)
25 files changed:
admin/l10n/messages.pot [new file with mode: 0644]
admin/l10n/xgettextfiles [new file with mode: 0644]
docs/createtranslation.pl
docs/getstrings.pl [new file with mode: 0644]
index.php
js/js.js
js/setup.js [new file with mode: 0644]
l10n/de.php [new file with mode: 0644]
l10n/de.po [new file with mode: 0644]
l10n/javascript.php [new file with mode: 0644]
l10n/messages.pot [new file with mode: 0644]
l10n/xgettextfiles [new file with mode: 0644]
lib/l10n.php
log/l10n/da.php [new file with mode: 0644]
log/l10n/da.po [new file with mode: 0644]
log/l10n/log
templates/404.php
templates/installation.php
templates/layout.admin.php
templates/layout.guest.php
templates/layout.user.php
templates/login.php
templates/logout.php
templates/part.pagenavi.php
templates/part.searchbox.php

diff --git a/admin/l10n/messages.pot b/admin/l10n/messages.pot
new file mode 100644 (file)
index 0000000..c30a445
--- /dev/null
@@ -0,0 +1,91 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-06-19 23:32+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../templates/app.php:22
+msgid "read more"
+msgstr ""
+
+#: ../templates/app.php:24
+msgid "INSTALL"
+msgstr ""
+
+#: ../templates/app_noconn.php:6 ../templates/apps.php:6
+msgid "Apps Repository"
+msgstr ""
+
+#: ../templates/app_noconn.php:7
+msgid "Cannot connect to apps repository"
+msgstr ""
+
+#: ../templates/apps.php:13 ../templates/users.php:6 ../templates/users.php:20
+#: ../templates/users.php:50
+msgid "Name"
+msgstr ""
+
+#: ../templates/apps.php:14
+msgid "Modified"
+msgstr ""
+
+#: ../templates/system.php:6
+msgid "Administration"
+msgstr ""
+
+#: ../templates/system.php:7
+msgid "System Settings"
+msgstr ""
+
+#: ../templates/users.php:13
+msgid "Add user"
+msgstr ""
+
+#: ../templates/users.php:21
+msgid "Password"
+msgstr ""
+
+#: ../templates/users.php:30
+msgid "Create user"
+msgstr ""
+
+#: ../templates/users.php:40 ../templates/users.php:68
+msgid "remove"
+msgstr ""
+
+#: ../templates/users.php:46
+msgid "Groups"
+msgstr ""
+
+#: ../templates/users.php:58
+msgid "Create group"
+msgstr ""
+
+#: ../templates/users.php:94
+msgid "Force new password:"
+msgstr ""
+
+#: ../templates/users.php:96
+msgid "Set"
+msgstr ""
+
+#: ../templates/users.php:102
+msgid "Do you really want to delete user"
+msgstr ""
+
+#: ../templates/users.php:109
+msgid "Do you really want to delete group"
+msgstr ""
diff --git a/admin/l10n/xgettextfiles b/admin/l10n/xgettextfiles
new file mode 100644 (file)
index 0000000..37acbc2
--- /dev/null
@@ -0,0 +1,5 @@
+../templates/app.php
+../templates/app_noconn.php
+../templates/apps.php
+../templates/system.php
+../templates/users.php
index 4c1c7c38d73fc91a4423fbf644b27e820653196b..12ba22a5ea44109e9eb9d6c10d22e0100353b2ab 100644 (file)
@@ -16,6 +16,7 @@ foreach my $i ( @files ){
        my @strings = ();
        foreach my $key ( keys( %{$hash} )){
                next if $key eq '""';
+               next if $hash->{$key}->msgstr() eq '""';
                push( @strings, $hash->{$key}->msgid()." => ".$hash->{$key}->msgstr());
        }
 
diff --git a/docs/getstrings.pl b/docs/getstrings.pl
new file mode 100644 (file)
index 0000000..0325438
--- /dev/null
@@ -0,0 +1,18 @@
+#!/usr/bin/perl
+use strict;
+
+if( -e 'messages.pot' ){
+       `xgettext --files-from=xgettextfiles --join-existing --output=messages.pot --keyword=t`
+}
+else{
+       `xgettext --files-from=xgettextfiles --output=messages.pot --keyword=t`
+}
+
+opendir( DIR, '.' );
+my @files = readdir( DIR );
+closedir( DIR );
+
+foreach my $i ( @files ){
+       next unless $i =~ m/^(.*)\.po$/;
+       `xgettext --files-from=xgettextfiles --join-existing --output=$i --keyword=t`
+}
index f4d6f27a3c4743a967466c3322695f386027f30b..5aaa8fb89c0e06c207a22d4f3c02bdabba02780b 100644 (file)
--- a/index.php
+++ b/index.php
@@ -27,6 +27,8 @@ require_once(dirname(__FILE__).'/lib/base.php');
 require_once('appconfig.php');
 require_once('template.php');
 
+OC_UTIL::addScript('setup');
+
 $not_installed = !OC_CONFIG::getValue('installed', false);
 $install_called = (isset($_POST['install']) AND $_POST['install']=='true');
 
index a6765ec62db90609e2923e5db794d580992a76c5..7e44b7ce6d5cc041b6d79c2c1637d3c593a6bbc4 100644 (file)
--- a/js/js.js
+++ b/js/js.js
@@ -1,26 +1,23 @@
-$(document).ready(function() { 
-       // Hide the MySQL config div if needed :
-       if(!$('#mysql').is(':checked') && $('#hasSQLite').val()=='true') {
-               $('#use_mysql').hide();
+var _l10ncache = {};
+function t(app,text){
+       if( !( app in _l10ncache )){
+               $.post( oc_webroot+'/l10n/javascript.php', {'app': app}, function(jsondata){
+                       _l10ncache[app] = jsondata.data;
+               });
+
+               // Bad answer ...
+               if( !( app in _l10ncache )){
+                       _l10ncache[app] = [];
+               }
        }
-       
-       $('#datadirField').hide(250);
-       if($('#hasSQLite').val()=='true'){
-               $('#databaseField').hide(250);
+       if( typeof( _l10ncache[app][text] ) !== 'undefined' ){
+               return _l10ncache[app][text];
        }
-       
-       $('#sqlite').click(function() {
-               $('#use_mysql').slideUp(250);
-       });
-       
-       $('#mysql').click(function() {
-               $('#use_mysql').slideDown(250);
-       });
-       
-       $('#showAdvanced').click(function() {
-               $('#datadirField').slideToggle(250);
-               if($('#hasSQLite').val()=='true'){
-                       $('#databaseField').slideToggle(250);
-               }
-       });
+       else{
+               return text;
+       }
+}
+
+$(document).ready(function(){
+       // Put fancy stuff in here
 });
diff --git a/js/setup.js b/js/setup.js
new file mode 100644 (file)
index 0000000..b4616b8
--- /dev/null
@@ -0,0 +1,26 @@
+$(document).ready(function() {
+       // Hide the MySQL config div if needed :
+       if(!$('#mysql').is(':checked') && $('#hasSQLite').val()=='true') {
+               $('#use_mysql').hide();
+       }
+
+       $('#datadirField').hide(250);
+       if($('#hasSQLite').val()=='true'){
+               $('#databaseField').hide(250);
+       }
+
+       $('#sqlite').click(function() {
+               $('#use_mysql').slideUp(250);
+       });
+
+       $('#mysql').click(function() {
+               $('#use_mysql').slideDown(250);
+       });
+
+       $('#showAdvanced').click(function() {
+               $('#datadirField').slideToggle(250);
+               if($('#hasSQLite').val()=='true'){
+                       $('#databaseField').slideToggle(250);
+               }
+       });
+});
diff --git a/l10n/de.php b/l10n/de.php
new file mode 100644 (file)
index 0000000..fb00345
--- /dev/null
@@ -0,0 +1,11 @@
+<?php $TRANSLATIONS = array(
+"You are logged out." => "Sie wurden abgemeldet.",
+"Set where to store the data." => "Speicherort der Daten",
+"Advanced" => "Erweitert",
+"prev" => "zurück",
+"Login:" => "Benutzername:",
+"Login failed!" => "Anmeldung Fehlgeschlagen!",
+"next" => "weiter",
+"Password:" => "Passwort:",
+"Search" => "Suchen"
+);
diff --git a/l10n/de.po b/l10n/de.po
new file mode 100644 (file)
index 0000000..19b12ca
--- /dev/null
@@ -0,0 +1,120 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-06-19 23:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../templates/404.php:15
+msgid "Error 404, Cloud not found"
+msgstr ""
+
+#: ../templates/installation.php:6
+msgid "Welcome to <strong>ownCloud</strong>, your personnal cloud."
+msgstr ""
+
+#: ../templates/installation.php:7
+msgid "To finish the installation, please follow the steps below."
+msgstr ""
+
+#: ../templates/installation.php:26
+msgid "Create an <strong>admin account.</strong>"
+msgstr ""
+
+#: ../templates/installation.php:27
+msgid "Login:"
+msgstr "Benutzername:"
+
+#: ../templates/installation.php:28
+msgid "Password:"
+msgstr "Passwort:"
+
+#: ../templates/installation.php:31
+msgid "Advanced"
+msgstr "Erweitert"
+
+#: ../templates/installation.php:34
+msgid "Set where to store the data."
+msgstr "Speicherort der Daten"
+
+#: ../templates/installation.php:35
+msgid "Data directory:"
+msgstr ""
+
+#: ../templates/installation.php:39
+msgid "Configure your database."
+msgstr ""
+
+#: ../templates/installation.php:43
+msgid "I will use a SQLite database. You have nothing to do!"
+msgstr ""
+
+#: ../templates/installation.php:46
+msgid "SQLite"
+msgstr ""
+
+#: ../templates/installation.php:53
+msgid "I will use a MySQL database."
+msgstr ""
+
+#: ../templates/installation.php:59
+msgid "Host:"
+msgstr ""
+
+#: ../templates/installation.php:60
+msgid "Database name:"
+msgstr ""
+
+#: ../templates/installation.php:61
+msgid "Table prefix:"
+msgstr ""
+
+#: ../templates/installation.php:62
+msgid "MySQL user login:"
+msgstr ""
+
+#: ../templates/installation.php:63
+msgid "MySQL user password:"
+msgstr ""
+
+#: ../templates/layout.guest.php:17 ../templates/layout.guest.php:20
+msgid ""
+"<a href=\"http://owncloud.org/\">ownCloud</a> is a personal cloud which runs "
+"on your own server.</p>"
+msgstr ""
+
+#: ../templates/login.php:6
+msgid "Login failed!"
+msgstr "Anmeldung Fehlgeschlagen!"
+
+#: ../templates/logout.php:1
+msgid "You are logged out."
+msgstr "Sie wurden abgemeldet."
+
+#: ../templates/part.pagenavi.php:6
+msgid "prev"
+msgstr "zurück"
+
+#: ../templates/part.pagenavi.php:26
+msgid "next"
+msgstr "weiter"
+
+#: ../templates/part.searchbox.php:3
+msgid "Search"
+msgstr "Suchen"
+
+#: ../templates/installation.php:68
+msgid "Finish setup"
+msgstr ""
diff --git a/l10n/javascript.php b/l10n/javascript.php
new file mode 100644 (file)
index 0000000..a1e8448
--- /dev/null
@@ -0,0 +1,34 @@
+<?php
+
+/**
+* ownCloud - ajax frontend
+*
+* @author Jakob Sack
+* @copyright 2011 Jakob Sack kde@jakobsack.de
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+*
+* You should have received a copy of the GNU Affero General Public
+* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+// Init owncloud
+require_once('../lib/base.php');
+
+$app = $_POST["app"];
+
+// We send json data
+header( "Content-Type: application/jsonrequest" );
+$l = new OC_L10N( $app );
+
+echo json_encode( array( 'status' => 'success', 'data' => $l->getTranslations()));
+?>
diff --git a/l10n/messages.pot b/l10n/messages.pot
new file mode 100644 (file)
index 0000000..591a1c7
--- /dev/null
@@ -0,0 +1,120 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-06-19 23:27+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../templates/404.php:15
+msgid "Error 404, Cloud not found"
+msgstr ""
+
+#: ../templates/installation.php:6
+msgid "Welcome to <strong>ownCloud</strong>, your personnal cloud."
+msgstr ""
+
+#: ../templates/installation.php:7
+msgid "To finish the installation, please follow the steps below."
+msgstr ""
+
+#: ../templates/installation.php:26
+msgid "Create an <strong>admin account.</strong>"
+msgstr ""
+
+#: ../templates/installation.php:27
+msgid "Login:"
+msgstr ""
+
+#: ../templates/installation.php:28
+msgid "Password:"
+msgstr ""
+
+#: ../templates/installation.php:31
+msgid "Advanced"
+msgstr ""
+
+#: ../templates/installation.php:34
+msgid "Set where to store the data."
+msgstr ""
+
+#: ../templates/installation.php:35
+msgid "Data directory:"
+msgstr ""
+
+#: ../templates/installation.php:39
+msgid "Configure your database."
+msgstr ""
+
+#: ../templates/installation.php:43
+msgid "I will use a SQLite database. You have nothing to do!"
+msgstr ""
+
+#: ../templates/installation.php:46
+msgid "SQLite"
+msgstr ""
+
+#: ../templates/installation.php:53
+msgid "I will use a MySQL database."
+msgstr ""
+
+#: ../templates/installation.php:59
+msgid "Host:"
+msgstr ""
+
+#: ../templates/installation.php:60
+msgid "Database name:"
+msgstr ""
+
+#: ../templates/installation.php:61
+msgid "Table prefix:"
+msgstr ""
+
+#: ../templates/installation.php:62
+msgid "MySQL user login:"
+msgstr ""
+
+#: ../templates/installation.php:63
+msgid "MySQL user password:"
+msgstr ""
+
+#: ../templates/installation.php:68
+msgid "Finish setup"
+msgstr ""
+
+#: ../templates/layout.guest.php:20
+msgid ""
+"<a href=\"http://owncloud.org/\">ownCloud</a> is a personal cloud which runs "
+"on your own server.</p>"
+msgstr ""
+
+#: ../templates/login.php:6
+msgid "Login failed!"
+msgstr ""
+
+#: ../templates/logout.php:1
+msgid "You are logged out."
+msgstr ""
+
+#: ../templates/part.pagenavi.php:6
+msgid "prev"
+msgstr ""
+
+#: ../templates/part.pagenavi.php:26
+msgid "next"
+msgstr ""
+
+#: ../templates/part.searchbox.php:3
+msgid "Search"
+msgstr ""
diff --git a/l10n/xgettextfiles b/l10n/xgettextfiles
new file mode 100644 (file)
index 0000000..b5d83a8
--- /dev/null
@@ -0,0 +1,7 @@
+../templates/404.php
+../templates/installation.php
+../templates/layout.guest.php
+../templates/login.php
+../templates/logout.php
+../templates/part.pagenavi.php
+../templates/part.searchbox.php
index 2f72b9711739f54f0d869fac24fc3431cd25879e..8a7ff9d85351a3df54b70e08ff608f869b2a51eb 100644 (file)
@@ -109,6 +109,16 @@ class OC_L10N{
                return $text;
        }
 
+       /**
+        * @brief getTranslations
+        * @returns Fetch all translations
+        *
+        * Returns an associative array with all translations
+        */
+       public function getTranslations(){
+               return $this->translations;
+       }
+
        /**
         * @brief Localization
         * @param $type Type of localization
@@ -202,11 +212,10 @@ class OC_L10N{
                                closedir($dh);
                        }
                }
-
                if( isset($_SESSION['user_id']) && $_SESSION['user_id'] && OC_PREFERENCES::getValue( $_SESSION['user_id'], 'core', 'lang' )){
                        $lang = OC_PREFERENCES::getValue( $_SESSION['user_id'], 'core', 'lang' );
                        self::$language = $lang;
-                       if( array_search( $lang, $available )){
+                       if( array_search( $lang, $available ) !== false ){
                                return $lang;
                        }
                }
@@ -226,12 +235,9 @@ class OC_L10N{
        }
 
        /**
-        * @brief find the best language
+        * @brief find the l10n directory
         * @param $app App that needs to be translated
-        * @returns language
-        *
-        * Finds the best language. Depends on user settings and browser
-        * information
+        * @returns directory
         */
        protected static function findI18nDir( $app ){
                global $SERVERROOT;
diff --git a/log/l10n/da.php b/log/l10n/da.php
new file mode 100644 (file)
index 0000000..8ab9927
--- /dev/null
@@ -0,0 +1,14 @@
+<?php $TRANSLATIONS = array(
+"Show:" => "Vis:",
+"Uploads" => "Uploads",
+"Filter:" => "Filter:",
+"Logouts" => "Logouts",
+"Logins" => "Logins",
+"When" => "Hvornår",
+"Downloads" => "Downloads",
+"Clear log entries before" => "Slet log poster før",
+"What" => "Hvilket",
+"entries per page." => "poster pr side.",
+"Creations" => "Oprettelser",
+"Deletions" => "Sletninger"
+);
diff --git a/log/l10n/da.po b/log/l10n/da.po
new file mode 100644 (file)
index 0000000..5a88aed
--- /dev/null
@@ -0,0 +1,67 @@
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Mikkel Bjerg Larsen <mikkelbjerglarsen@gmail.com>, 2011.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-06-19 16:53+0200\n"
+"PO-Revision-Date: 2011-06-19 21:09+0200\n"
+"Last-Translator: Mikkel Bjerg Larsen <mikkelbjerglarsen@gmail.com>\n"
+"Language-Team: American English <kde-i18n-doc@kde.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.2\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../templates/index.php:4
+msgid "Filter:"
+msgstr "Filter:"
+
+#: ../templates/index.php:7
+msgid "Logins"
+msgstr "Logins"
+
+#: ../templates/index.php:8
+msgid "Logouts"
+msgstr "Logouts"
+
+#: ../templates/index.php:9
+msgid "Downloads"
+msgstr "Downloads"
+
+#: ../templates/index.php:10
+msgid "Uploads"
+msgstr "Uploads"
+
+#: ../templates/index.php:11
+msgid "Creations"
+msgstr "Oprettelser"
+
+#: ../templates/index.php:12
+msgid "Deletions"
+msgstr "Sletninger"
+
+#: ../templates/index.php:15
+msgid "Show:"
+msgstr "Vis:"
+
+#: ../templates/index.php:16
+msgid "entries per page."
+msgstr "poster pr side."
+
+#: ../templates/index.php:26
+msgid "What"
+msgstr "Hvilket"
+
+#: ../templates/index.php:27
+msgid "When"
+msgstr "Hvornår"
+
+#: ../templates/index.php:45
+msgid "Clear log entries before"
+msgstr "Slet log poster før"
+
index e5e074bf9aa47af618f076377c96457e36c4b03b..f70eb6af3fefe084380d7a48b40131f3bf70296c 100644 (file)
@@ -1,3 +1,4 @@
 [General]
 LangCode=de
+ProjectID=oc_log
 TargetLangCode=de
index 8909db29a4033ba3eb45a6871be0f90142673f87..b287571d166e8b1c5c84cd9ec573730b671024cd 100644 (file)
@@ -12,7 +12,7 @@ if(!isset($_)){//also provide standalone error page
        <img src="<?php echo image_path("", "weather-clear.png"); ?>" alt="ownCloud" />
        <ul>
                <li class='error'>
-                       Error 404, Cloud not found<br/>
+                       <?php echo $l->t( 'Error 404, Cloud not found' ); ?><br/>
                        <p class='hint'><?php if(isset($_['file'])) echo $_['file']?></p>
                </li>
        </ul>
index 880beb9a89e54a7d7c803d7e44c44e795e6fc2ec..93c00547ab98b9fc6dc9c65ec27f87c28176f0f2 100644 (file)
@@ -3,8 +3,8 @@
        <form action="index.php" method="post" id="setup_form">
                <input type="hidden" name="install" value="true" />
                <p class="intro">
-                       Welcome to <strong>ownCloud</strong>, your personnal cloud.<br />
-                       To finish the installation, please follow the steps below.
+                       <?php echo $l->t( 'Welcome to <strong>ownCloud</strong>, your personnal cloud.' ); ?><br />
+                       <?php echo $l->t( 'To finish the installation, please follow the steps below.' ); ?>
                </p>
 
                <?php if(count($_['errors']) > 0): ?>
                <?php endif; ?>
 
                <fieldset>
-                       <legend>Create an <strong>admin account.</strong></legend>
-                       <p><label for="adminlogin">Login :</label><input type="text" name="adminlogin" id="adminlogin" value="<?php print OC_HELPER::init_var('adminlogin'); ?>" /></p>
-                       <p><label for="adminpass">Password :</label><input type="password" name="adminpass" id="adminpass" value="<?php print OC_HELPER::init_var('adminpass'); ?>" /></p>
+                       <legend><?php echo $l->t( 'Create an <strong>admin account.</strong>' ); ?></legend>
+                       <p><label for="adminlogin"><?php echo $l->t( 'Login:' ); ?></label><input type="text" name="adminlogin" id="adminlogin" value="<?php print OC_HELPER::init_var('adminlogin'); ?>" /></p>
+                       <p><label for="adminpass"><?php echo $l->t( 'Password:' ); ?></label><input type="password" name="adminpass" id="adminpass" value="<?php print OC_HELPER::init_var('adminpass'); ?>" /></p>
         </fieldset>
         
-        <a id='showAdvanced'>Advanced <img src='<?php echo OC_HELPER::imagePath('','drop-arrow.png'); ?>'></img></a>
+        <a id='showAdvanced'><?php echo $l->t( 'Advanced' ); ?> <img src='<?php echo OC_HELPER::imagePath('','drop-arrow.png'); ?>'></img></a>
         
         <fieldset id='datadirField'>
-                       <legend>Set where to store the data.</legend>
-                       <p><label for="directory">Data directory :</label><input type="text" name="directory" id="directory" value="<?php print OC_HELPER::init_var('directory', $_['directory']); ?>" /></p>
+                       <legend><?php echo $l->t( 'Set where to store the data.' ); ?></legend>
+                       <p><label for="directory"><?php echo $l->t( 'Data directory:' ); ?></label><input type="text" name="directory" id="directory" value="<?php print OC_HELPER::init_var('directory', $_['directory']); ?>" /></p>
                </fieldset>
                
                <fieldset id='databaseField'>
-                       <legend>Configure your database.</legend>
+                       <legend><?php echo $l->t( 'Configure your database.' ); ?></legend>
                        <?php if($_['hasSQLite']): ?>
                        <input type='hidden' id='hasSQLite' value='true'/>
                        <?php if(!$_['hasMySQL']): ?>
-                       <p>I will use a SQLite database. You have nothing to do !</p>
+                       <p><?php echo $l->t( 'I will use a SQLite database. You have nothing to do!' ); ?></p>
                        <input type="hidden" id="dbtype" name="dbtype" value="sqlite" />
                        <?php else: ?>
-                       <p><label class="sqlite" for="sqlite">SQLite </label><input type="radio" name="dbtype" value='sqlite' id="sqlite" <?php OC_HELPER::init_radio('dbtype', 'sqlite', 'sqlite'); ?>/></p>
+                       <p><label class="sqlite" for="sqlite"><?php echo $l->t( 'SQLite' ); ?></label><input type="radio" name="dbtype" value='sqlite' id="sqlite" <?php OC_HELPER::init_radio('dbtype', 'sqlite', 'sqlite'); ?>/></p>
                        <?php endif; ?>
                        <?php endif; ?>
 
                        <?php if($_['hasMySQL']): ?>
                        <input type='hidden' id='hasMySQL' value='true'/>
                        <?php if(!$_['hasSQLite']): ?>
-                       <p>I will use a MySQL database.</p>
+                       <p><?php echo $l->t( 'I will use a MySQL database.' ); ?></p>
                        <input type="hidden" id="dbtype" name="dbtype" value="mysql" />
                        <?php else: ?>
                        <p><label class="mysql" for="mysql">MySQL </label><input type="radio" name="dbtype" value='mysql' id="mysql" <?php OC_HELPER::init_radio('dbtype', 'mysql', 'sqlite'); ?>/></p>
                        <?php endif; ?>
                        <div id="use_mysql">
-                               <p><label for="dbhost">Host :</label><input type="text" name="dbhost" id="dbhost" value="<?php print OC_HELPER::init_var('dbhost', 'localhost'); ?>" /></p>
-                               <p><label for="dbname">Database name :</label><input type="text" name="dbname" id="dbname" value="<?php print OC_HELPER::init_var('dbname'); ?>" /></p>
-                               <p><label for="dbtableprefix">Table prefix :</label><input type="text" name="dbtableprefix" id="dbtableprefix" value="<?php print OC_HELPER::init_var('dbtableprefix', 'oc_'); ?>" /></p>
-                               <p><label for="dbuser">MySQL user login :</label><input type="text" name="dbuser" id="dbuser" value="<?php print OC_HELPER::init_var('dbuser'); ?>" /></p>
-                               <p><label for="dbpass">MySQL user password :</label><input type="password" name="dbpass" id="dbpass" value="<?php print OC_HELPER::init_var('dbpass'); ?>" /></p>
+                               <p><label for="dbhost"><?php echo $l->t( 'Host:' ); ?></label><input type="text" name="dbhost" id="dbhost" value="<?php print OC_HELPER::init_var('dbhost', 'localhost'); ?>" /></p>
+                               <p><label for="dbname"><?php echo $l->t( 'Database name:' ); ?></label><input type="text" name="dbname" id="dbname" value="<?php print OC_HELPER::init_var('dbname'); ?>" /></p>
+                               <p><label for="dbtableprefix"><?php echo $l->t( 'Table prefix:' ); ?></label><input type="text" name="dbtableprefix" id="dbtableprefix" value="<?php print OC_HELPER::init_var('dbtableprefix', 'oc_'); ?>" /></p>
+                               <p><label for="dbuser"><?php echo $l->t( 'MySQL user login:' ); ?></label><input type="text" name="dbuser" id="dbuser" value="<?php print OC_HELPER::init_var('dbuser'); ?>" /></p>
+                               <p><label for="dbpass"><?php echo $l->t( 'MySQL user password:' ); ?></label><input type="password" name="dbpass" id="dbpass" value="<?php print OC_HELPER::init_var('dbpass'); ?>" /></p>
                        </div>
                        <?php endif; ?>
                </fieldset>
 
-               <p class="submit"><input type="submit" value="Finish setup" /></p>
+               <p class="submit"><input type="submit" value="<?php echo $l->t( 'Finish setup' ); ?>" /></p>
        </form>
 </div>
index 36b824639d360895b4f3345d7c2ad73ae000452f..66fb3ccc60b99ff1761d576016f7c53d60943061 100644 (file)
@@ -7,6 +7,9 @@
                <?php foreach($_['cssfiles'] as $cssfile): ?>
                        <link rel="stylesheet" href="<?php echo $cssfile; ?>" type="text/css" media="screen" />
                <?php endforeach; ?>
+               <script type="text/javascript">
+                       var oc_webroot = '<?php global $WEBROOT; echo $WEBROOT; ?>';
+               // </script>
                <?php foreach($_['jsfiles'] as $jsfile): ?>
                        <script type="text/javascript" src="<?php echo $jsfile; ?>"></script>
                <?php endforeach; ?>
index c957553082010537f3570dcdb555325c450c773c..ce99b00b9f69c108ad38b7a933eb19f11f7d55ae 100644 (file)
@@ -7,6 +7,9 @@
                <?php foreach($_['cssfiles'] as $cssfile): ?>
                        <link rel="stylesheet" href="<?php echo $cssfile; ?>" type="text/css" media="screen" />
                <?php endforeach; ?>
+               <script type="text/javascript">
+                       var oc_webroot = '<?php global $WEBROOT; echo $WEBROOT; ?>';
+               // </script>
                <?php foreach($_['jsfiles'] as $jsfile): ?>
                        <script type="text/javascript" src="<?php echo $jsfile; ?>"></script>
                <?php endforeach; ?>
@@ -14,6 +17,6 @@
 
        <body id="body-login">
                <?php echo $_['content']; ?>
-               <p class="info"><a href="http://owncloud.org/">ownCloud</a> is a personal cloud which runs on your own server.</p>
+               <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>' ); ?>
        </body>
 </html>
index da30df294f269a81b07d4dc58a5f9f67c6aa465f..f21db202a8353d0b698918f55a7523a9a26c87d0 100644 (file)
@@ -7,6 +7,9 @@
                <?php foreach($_['cssfiles'] as $cssfile): ?>
                        <link rel="stylesheet" href="<?php echo $cssfile; ?>" type="text/css" media="screen" />
                <?php endforeach; ?>
+               <script type="text/javascript">
+                       var oc_webroot = '<?php global $WEBROOT; echo $WEBROOT; ?>';
+               // </script>
                <?php foreach($_['jsfiles'] as $jsfile): ?>
                        <script type="text/javascript" src="<?php echo $jsfile; ?>"></script>
                <?php endforeach; ?>
index 845ae831a402a02f68ee578aba67112b1606c29d..e0f6ce23e2e01b35aaaabe1afec1fad68cb189ad 100644 (file)
@@ -3,7 +3,7 @@
        <form action="index.php" method="post" id="login_form">
                <fieldset>
                        <?php if($_['error']): ?>
-                               Login failed!
+                               <?php echo $l->t( 'Login failed!' ); ?>
                        <?php endif; ?>
                        <input type="text" name="user" id="user" value="" />
                        <input type="password" name="password" id="password" value="" />
index 4a15998a5c048152755872e5224bb6b29d43cabf..8cbbdd9cc8d9b3c759adea07bce7a2986b216b2f 100644 (file)
@@ -1 +1 @@
-You are logged out.
+<?php echo $l->t( 'You are logged out.' ); ?>
\ No newline at end of file
index d48d0cada32a1aa39c901e4fe61bae62b734a808..0602b793882598d47827a6fe496db54284d0a5fb 100644 (file)
@@ -3,7 +3,7 @@
                <tr>
                        <td width="1">
                                <?php if($_['page']>0):?>
-                                       <span class="pagerbutton1"><a href="<?php echo $_['url'].($_['page']-1);?>">prev</a>&nbsp;&nbsp;</span>
+                                       <span class="pagerbutton1"><a href="<?php echo $_['url'].($_['page']-1);?>"><?php echo $l->t( 'prev' ); ?></a>&nbsp;&nbsp;</span>
                                <?php endif; ?>
                        </td>
                        <td>
@@ -23,7 +23,7 @@
                        </td>
                        <td width="1">
                                <?php if(($_['page']+1)<$_['pagecount']):?>
-                                       <span class="pagerbutton2"><a href="<?php echo $_['url'].($_['page']+1);?>">next</a></span>
+                                       <span class="pagerbutton2"><a href="<?php echo $_['url'].($_['page']+1);?>"><?php echo $l->t( 'next' ); ?></a></span>
                                <?php endif; ?>
                        </td>
                </tr>
index 910af81ebb20001ba0ba30018d450482523ad663..7465a7326ee8f4b1186e57eff981724631209acd 100644 (file)
@@ -1,4 +1,4 @@
 <form class='searchbox' action='<?php echo $_['searchurl']?>' method='post'>
        <input name='query' value='<?php if(isset($_POST['query'])){echo $_POST['query'];};?>'/>
-       <input type='submit' value='Search' class='prettybutton'/>
+       <input type='submit' value='<?php echo $l->t( 'Search' ); ?>' class='prettybutton'/>
 </form>
\ No newline at end of file