]> source.dussan.org Git - nextcloud-server.git/commitdiff
New i18n-structure
authorJakob Sack <kde@jakobsack.de>
Mon, 20 Jun 2011 19:54:21 +0000 (21:54 +0200)
committerJakob Sack <kde@jakobsack.de>
Mon, 20 Jun 2011 19:54:21 +0000 (21:54 +0200)
25 files changed:
admin/l10n/messages.pot [deleted file]
core/ajax/translations.php [new file with mode: 0644]
core/l10n/de.po [deleted file]
core/l10n/javascript.php [deleted file]
core/l10n/messages.pot [deleted file]
core/l10n/nl.po [deleted file]
l10n/da/log.po [new file with mode: 0644]
l10n/de/core.po [new file with mode: 0644]
l10n/de/log.po [new file with mode: 0644]
l10n/l10n.pl [new file with mode: 0644]
l10n/nl/core.po [new file with mode: 0644]
l10n/nl/log.po [new file with mode: 0644]
l10n/nl/settings.po [new file with mode: 0644]
l10n/templates/admin.pot [new file with mode: 0644]
l10n/templates/core.pot [new file with mode: 0644]
l10n/templates/log.pot [new file with mode: 0644]
l10n/templates/settings.pot [new file with mode: 0644]
lib/l10n.php
log/l10n/da.po [deleted file]
log/l10n/de.po [deleted file]
log/l10n/log [deleted file]
log/l10n/messages.pot [deleted file]
log/l10n/nl.po [deleted file]
settings/l10n/messages.pot [deleted file]
settings/l10n/nl.po [deleted file]

diff --git a/admin/l10n/messages.pot b/admin/l10n/messages.pot
deleted file mode 100644 (file)
index c30a445..0000000
+++ /dev/null
@@ -1,91 +0,0 @@
-# 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/core/ajax/translations.php b/core/ajax/translations.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/core/l10n/de.po b/core/l10n/de.po
deleted file mode 100644 (file)
index 19b12ca..0000000
+++ /dev/null
@@ -1,120 +0,0 @@
-# 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/core/l10n/javascript.php b/core/l10n/javascript.php
deleted file mode 100644 (file)
index a1e8448..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<?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/core/l10n/messages.pot b/core/l10n/messages.pot
deleted file mode 100644 (file)
index 591a1c7..0000000
+++ /dev/null
@@ -1,120 +0,0 @@
-# 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/core/l10n/nl.po b/core/l10n/nl.po
deleted file mode 100644 (file)
index 7a819e8..0000000
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Robin Appelman <icewind1991@gmail.com>, 2011.
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-06-19 23:27+0200\n"
-"PO-Revision-Date: 2011-06-20 14:19+0200\n"
-"Last-Translator: Robin Appelman <icewind1991@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/404.php:15
-msgid "Error 404, Cloud not found"
-msgstr "Fout 404, Cloud niet gevonden."
-
-#: ../templates/installation.php:6
-msgid "Welcome to <strong>ownCloud</strong>, your personnal cloud."
-msgstr "Welkom by <strong>ownCloud</strong>, jouw persoonlijke cloud"
-
-#: ../templates/installation.php:7
-msgid "To finish the installation, please follow the steps below."
-msgstr "Volg de volgende stappen om de instalatie af te ronden."
-
-#: ../templates/installation.php:26
-msgid "Create an <strong>admin account.</strong>"
-msgstr "Maak een <strong>administrator account.</strong> aan"
-
-#: ../templates/installation.php:27
-msgid "Login:"
-msgstr "Gebruikersnaam:"
-
-#: ../templates/installation.php:28
-msgid "Password:"
-msgstr "Wachtwoord:"
-
-#: ../templates/installation.php:31
-msgid "Advanced"
-msgstr "Geavanceerd"
-
-#: ../templates/installation.php:34
-msgid "Set where to store the data."
-msgstr "Bepaal waar de gegevens opgeslagen moeten woorden."
-
-#: ../templates/installation.php:35
-msgid "Data directory:"
-msgstr "Gegevens map:"
-
-#: ../templates/installation.php:39
-msgid "Configure your database."
-msgstr "Stel de database in."
-
-#: ../templates/installation.php:43
-msgid "I will use a SQLite database. You have nothing to do!"
-msgstr ""
-"Er zan een SQLite database gebruikt woorden, je hoeft niks in te stellen."
-
-#: ../templates/installation.php:46
-msgid "SQLite"
-msgstr "SQLite"
-
-#: ../templates/installation.php:53
-msgid "I will use a MySQL database."
-msgstr "Er zal een MySQL database gebruikt woorden."
-
-#: ../templates/installation.php:59
-msgid "Host:"
-msgstr "Host:"
-
-#: ../templates/installation.php:60
-msgid "Database name:"
-msgstr "Database naam:"
-
-#: ../templates/installation.php:61
-msgid "Table prefix:"
-msgstr "Voorvoegsel voor tabelnaamen:"
-
-#: ../templates/installation.php:62
-msgid "MySQL user login:"
-msgstr "MySQL gebruikers naam."
-
-#: ../templates/installation.php:63
-msgid "MySQL user password:"
-msgstr "MySQL wachtwoord"
-
-#: ../templates/installation.php:68
-msgid "Finish setup"
-msgstr "Instalatie afronden"
-
-#: ../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 ""
-"<a href=\"http://owncloud.org/\">ownCloud</a> is een persoonlijke cloud die "
-"op je eigen server draait.</p>"
-
-#: ../templates/login.php:6
-msgid "Login failed!"
-msgstr "Aanmelden mislukt."
-
-#: ../templates/logout.php:1
-msgid "You are logged out."
-msgstr "Je bent afgemend."
-
-#: ../templates/part.pagenavi.php:6
-msgid "prev"
-msgstr "vorige"
-
-#: ../templates/part.pagenavi.php:26
-msgid "next"
-msgstr "volgende"
-
-#: ../templates/part.searchbox.php:3
-msgid "Search"
-msgstr "Zoeken"
-
-
diff --git a/l10n/da/log.po b/l10n/da/log.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"
+
diff --git a/l10n/de/core.po b/l10n/de/core.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/de/log.po b/l10n/de/log.po
new file mode 100644 (file)
index 0000000..a901754
--- /dev/null
@@ -0,0 +1,68 @@
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Jakob Sack <mail@jakobsack.de>, 2011.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-06-19 16:44+0200\n"
+"PO-Revision-Date: 2011-06-19 16:54+0200\n"
+"Last-Translator: Jakob Sack <mail@jakobsack.de>\n"
+"Language-Team: German <kde-i18n-de@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 "Anmeldungen"
+
+#: ../templates/index.php:8
+msgid "Logouts"
+msgstr "Abmeldungen"
+
+#: ../templates/index.php:9
+msgid "Downloads"
+msgstr "Downloads"
+
+#: ../templates/index.php:10
+msgid "Uploads"
+msgstr "Uploads"
+
+#: ../templates/index.php:11
+msgid "Creations"
+msgstr "Erstellungen"
+
+#: ../templates/index.php:12
+msgid "Deletions"
+msgstr "Löschungen"
+
+#: ../templates/index.php:15
+msgid "Show:"
+msgstr "Zeige"
+
+#: ../templates/index.php:16
+msgid "entries per page."
+msgstr "Einträge pro Seite"
+
+#: ../templates/index.php:26
+msgid "What"
+msgstr "Was"
+
+#: ../templates/index.php:27
+msgid "When"
+msgstr "Wann"
+
+#: ../templates/index.php:45
+msgid "Clear log entries before"
+msgstr "Lösche Einträge vor dem"
+
+
diff --git a/l10n/l10n.pl b/l10n/l10n.pl
new file mode 100644 (file)
index 0000000..5463e34
--- /dev/null
@@ -0,0 +1,104 @@
+#!/usr/bin/perl
+use strict;
+use Locale::PO;
+use Cwd;
+use Data::Dumper;
+
+sub crawl{
+       my( $dir ) = @_;
+       my @found = ();
+
+       opendir( DIR, $dir );
+       my @files = readdir( DIR );
+       closedir( DIR );
+
+       foreach my $i ( @files ){
+               next if substr( $i, 0, 1 ) eq '.';
+               if( -d $dir.'/'.$i ){
+                       push( @found, crawl( $dir.'/'.$i ));
+               }
+               elsif( $i eq 'xgettextfiles' ){
+                       push( @found, $dir );
+               }
+       }
+
+       return @found;
+}
+
+my $task = shift( @ARGV );
+my $place = '..';
+
+die( "Usuage: l10n.pl task\ntask: read, write\n") unless $task && $place;
+
+# Where are i18n-files?
+my @dirs = crawl( $place );
+
+# Languages
+mkdir( 'templates' ) unless -d 'templates';
+
+my @languages = ();
+opendir( DIR, '.' );
+my @files = readdir( DIR );
+closedir( DIR );
+foreach my $i ( @files ){
+       push( @languages, $i ) if -d $i && substr( $i, 0, 1 ) ne '.';
+}
+
+# Our current position
+my $whereami = cwd();
+
+if( $task eq 'read' ){
+       foreach my $dir ( @dirs ){
+               my @temp = split( /\//, $dir );
+               pop( @temp );
+               my $app = pop( @temp );
+               chdir( $dir );
+               foreach my $language ( @languages ){
+                       my $output = "${whereami}/$language/$app.po";
+                       $output .= 't' if $language eq 'templates';
+                       
+                       if( -e $output ){
+                               `xgettext --files-from=xgettextfiles --join-existing --output="$output" --keyword=t`
+                       }
+                       else{
+                               `xgettext --files-from=xgettextfiles --output="$output" --keyword=t`
+                       }
+               }
+               chdir( $whereami );
+       }
+}
+elsif( $task eq 'write' ){
+       foreach my $dir ( @dirs ){
+               my @temp = split( /\//, $dir );
+               pop( @temp );
+               my $app = pop( @temp );
+               chdir( $dir );
+               foreach my $language ( @languages ){
+                       next if $language eq 'templates';
+                       
+                       my $input = "${whereami}/$language/$app.po";
+                       next unless -e $input;
+
+                       my $hash = Locale::PO->load_file_ashash( $input );
+
+                       # Create array
+                       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());
+                       }
+
+                       # Write PHP file
+                       open( OUT, ">$lang.php" );
+                       print OUT "<?php \$TRANSLATIONS = array(\n";
+                       print OUT join( ",\n", @strings );
+                       print OUT "\n);\n";
+                       close( OUT );
+               }
+               chdir( $whereami );
+       }
+}
+else{
+       print "unknown task!\n";
+}
diff --git a/l10n/nl/core.po b/l10n/nl/core.po
new file mode 100644 (file)
index 0000000..7a819e8
--- /dev/null
@@ -0,0 +1,125 @@
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Robin Appelman <icewind1991@gmail.com>, 2011.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-06-19 23:27+0200\n"
+"PO-Revision-Date: 2011-06-20 14:19+0200\n"
+"Last-Translator: Robin Appelman <icewind1991@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/404.php:15
+msgid "Error 404, Cloud not found"
+msgstr "Fout 404, Cloud niet gevonden."
+
+#: ../templates/installation.php:6
+msgid "Welcome to <strong>ownCloud</strong>, your personnal cloud."
+msgstr "Welkom by <strong>ownCloud</strong>, jouw persoonlijke cloud"
+
+#: ../templates/installation.php:7
+msgid "To finish the installation, please follow the steps below."
+msgstr "Volg de volgende stappen om de instalatie af te ronden."
+
+#: ../templates/installation.php:26
+msgid "Create an <strong>admin account.</strong>"
+msgstr "Maak een <strong>administrator account.</strong> aan"
+
+#: ../templates/installation.php:27
+msgid "Login:"
+msgstr "Gebruikersnaam:"
+
+#: ../templates/installation.php:28
+msgid "Password:"
+msgstr "Wachtwoord:"
+
+#: ../templates/installation.php:31
+msgid "Advanced"
+msgstr "Geavanceerd"
+
+#: ../templates/installation.php:34
+msgid "Set where to store the data."
+msgstr "Bepaal waar de gegevens opgeslagen moeten woorden."
+
+#: ../templates/installation.php:35
+msgid "Data directory:"
+msgstr "Gegevens map:"
+
+#: ../templates/installation.php:39
+msgid "Configure your database."
+msgstr "Stel de database in."
+
+#: ../templates/installation.php:43
+msgid "I will use a SQLite database. You have nothing to do!"
+msgstr ""
+"Er zan een SQLite database gebruikt woorden, je hoeft niks in te stellen."
+
+#: ../templates/installation.php:46
+msgid "SQLite"
+msgstr "SQLite"
+
+#: ../templates/installation.php:53
+msgid "I will use a MySQL database."
+msgstr "Er zal een MySQL database gebruikt woorden."
+
+#: ../templates/installation.php:59
+msgid "Host:"
+msgstr "Host:"
+
+#: ../templates/installation.php:60
+msgid "Database name:"
+msgstr "Database naam:"
+
+#: ../templates/installation.php:61
+msgid "Table prefix:"
+msgstr "Voorvoegsel voor tabelnaamen:"
+
+#: ../templates/installation.php:62
+msgid "MySQL user login:"
+msgstr "MySQL gebruikers naam."
+
+#: ../templates/installation.php:63
+msgid "MySQL user password:"
+msgstr "MySQL wachtwoord"
+
+#: ../templates/installation.php:68
+msgid "Finish setup"
+msgstr "Instalatie afronden"
+
+#: ../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 ""
+"<a href=\"http://owncloud.org/\">ownCloud</a> is een persoonlijke cloud die "
+"op je eigen server draait.</p>"
+
+#: ../templates/login.php:6
+msgid "Login failed!"
+msgstr "Aanmelden mislukt."
+
+#: ../templates/logout.php:1
+msgid "You are logged out."
+msgstr "Je bent afgemend."
+
+#: ../templates/part.pagenavi.php:6
+msgid "prev"
+msgstr "vorige"
+
+#: ../templates/part.pagenavi.php:26
+msgid "next"
+msgstr "volgende"
+
+#: ../templates/part.searchbox.php:3
+msgid "Search"
+msgstr "Zoeken"
+
+
diff --git a/l10n/nl/log.po b/l10n/nl/log.po
new file mode 100644 (file)
index 0000000..2da2355
--- /dev/null
@@ -0,0 +1,66 @@
+# 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 16:53+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/index.php:4
+msgid "Filter:"
+msgstr ""
+
+#: ../templates/index.php:7
+msgid "Logins"
+msgstr ""
+
+#: ../templates/index.php:8
+msgid "Logouts"
+msgstr ""
+
+#: ../templates/index.php:9
+msgid "Downloads"
+msgstr ""
+
+#: ../templates/index.php:10
+msgid "Uploads"
+msgstr ""
+
+#: ../templates/index.php:11
+msgid "Creations"
+msgstr ""
+
+#: ../templates/index.php:12
+msgid "Deletions"
+msgstr ""
+
+#: ../templates/index.php:15
+msgid "Show:"
+msgstr ""
+
+#: ../templates/index.php:16
+msgid "entries per page."
+msgstr ""
+
+#: ../templates/index.php:26
+msgid "What"
+msgstr ""
+
+#: ../templates/index.php:27
+msgid "When"
+msgstr ""
+
+#: ../templates/index.php:45
+msgid "Clear log entries before"
+msgstr ""
diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po
new file mode 100644 (file)
index 0000000..5b38f84
--- /dev/null
@@ -0,0 +1,87 @@
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Robin Appelman <icewind1991@gmail.com>, 2011.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2011-06-20 14:47+0200\n"
+"PO-Revision-Date: 2011-06-20 14:48+0200\n"
+"Last-Translator: Robin Appelman <icewind1991@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:3
+msgid "Account information"
+msgstr "Gebruiks gegevens"
+
+#: ../templates/index.php:5
+msgid "You're currently using"
+msgstr "Je gebruikt momenteel"
+
+#: ../templates/index.php:5
+msgid "of your"
+msgstr "van de"
+
+#: ../templates/index.php:5
+msgid "space"
+msgstr "beschikbare ruimte."
+
+#: ../templates/index.php:11
+msgid "Change Password"
+msgstr "Wachtwoord aanpassen"
+
+#: ../templates/index.php:12
+msgid "Your password got changed"
+msgstr "Je wachtwoord is aangepast"
+
+#: ../templates/index.php:15
+msgid "Old password:"
+msgstr "Oud wachtwoord:"
+
+#: ../templates/index.php:19
+msgid "New password"
+msgstr "Nieuw wachtwoord"
+
+#: ../templates/index.php:24
+msgid "Show new password"
+msgstr "Toon nieuw wachtwoord"
+
+#: ../templates/index.php:34
+msgid "Language"
+msgstr "Taal"
+
+#: ../ajax/changepassword.php:13 ../ajax/setlanguage.php:13
+msgid "Authentication error"
+msgstr "Authenticatie fout."
+
+#: ../ajax/changepassword.php:19
+msgid "You have to enter the old and the new password!"
+msgstr "Je moet het oude en nieuwe wachtwoord invullen."
+
+#: ../ajax/changepassword.php:25
+msgid "Your old password is wrong!"
+msgstr "Het oude wachtwoord is verkeerd."
+
+#: ../ajax/changepassword.php:31
+msgid "Password changed"
+msgstr "Wachtwoord aangepast"
+
+#: ../ajax/changepassword.php:34
+msgid "Unable to change password"
+msgstr "Wachtwoord aanpassen is niet mogenlijk"
+
+#: ../ajax/setlanguage.php:21
+msgid "Language changed"
+msgstr "Taal aangepast"
+
+#: ../ajax/setlanguage.php:23
+msgid "Invalid request"
+msgstr "Ongeldige aanvraag"
+
diff --git a/l10n/templates/admin.pot b/l10n/templates/admin.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/l10n/templates/core.pot b/l10n/templates/core.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/templates/log.pot b/l10n/templates/log.pot
new file mode 100644 (file)
index 0000000..2da2355
--- /dev/null
@@ -0,0 +1,66 @@
+# 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 16:53+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/index.php:4
+msgid "Filter:"
+msgstr ""
+
+#: ../templates/index.php:7
+msgid "Logins"
+msgstr ""
+
+#: ../templates/index.php:8
+msgid "Logouts"
+msgstr ""
+
+#: ../templates/index.php:9
+msgid "Downloads"
+msgstr ""
+
+#: ../templates/index.php:10
+msgid "Uploads"
+msgstr ""
+
+#: ../templates/index.php:11
+msgid "Creations"
+msgstr ""
+
+#: ../templates/index.php:12
+msgid "Deletions"
+msgstr ""
+
+#: ../templates/index.php:15
+msgid "Show:"
+msgstr ""
+
+#: ../templates/index.php:16
+msgid "entries per page."
+msgstr ""
+
+#: ../templates/index.php:26
+msgid "What"
+msgstr ""
+
+#: ../templates/index.php:27
+msgid "When"
+msgstr ""
+
+#: ../templates/index.php:45
+msgid "Clear log entries before"
+msgstr ""
diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot
new file mode 100644 (file)
index 0000000..705d583
--- /dev/null
@@ -0,0 +1,86 @@
+# 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-20 14:47+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/index.php:3
+msgid "Account information"
+msgstr ""
+
+#: ../templates/index.php:5
+msgid "You're currently using"
+msgstr ""
+
+#: ../templates/index.php:5
+msgid "of your"
+msgstr ""
+
+#: ../templates/index.php:5
+msgid "space"
+msgstr ""
+
+#: ../templates/index.php:11
+msgid "Change Password"
+msgstr ""
+
+#: ../templates/index.php:12
+msgid "Your password got changed"
+msgstr ""
+
+#: ../templates/index.php:15
+msgid "Old password:"
+msgstr ""
+
+#: ../templates/index.php:19
+msgid "New password"
+msgstr ""
+
+#: ../templates/index.php:24
+msgid "Show new password"
+msgstr ""
+
+#: ../templates/index.php:34
+msgid "Language"
+msgstr ""
+
+#: ../ajax/changepassword.php:13 ../ajax/setlanguage.php:13
+msgid "Authentication error"
+msgstr ""
+
+#: ../ajax/changepassword.php:19
+msgid "You have to enter the old and the new password!"
+msgstr ""
+
+#: ../ajax/changepassword.php:25
+msgid "Your old password is wrong!"
+msgstr ""
+
+#: ../ajax/changepassword.php:31
+msgid "Password changed"
+msgstr ""
+
+#: ../ajax/changepassword.php:34
+msgid "Unable to change password"
+msgstr ""
+
+#: ../ajax/setlanguage.php:21
+msgid "Language changed"
+msgstr ""
+
+#: ../ajax/setlanguage.php:23
+msgid "Invalid request"
+msgstr ""
index 729310825dd746643b1810a891b23cd43a289c8a..ff0238241a6802503623639092302e2dbbf4e8d2 100644 (file)
@@ -81,9 +81,9 @@ class OC_L10N{
                                }
                        }
 
-                       if( file_exists( $SERVERROOT.'/l10n/l10n-'.$lang.'.php' )){
+                       if( file_exists( $SERVERROOT.'/core/l10n/l10n-'.$lang.'.php' )){
                                // Include the file, save the data from $CONFIG
-                               include( $SERVERROOT.'/l10n/l10n-'.$lang.'.php' );
+                               include( $SERVERROOT.'/core/l10n/l10n-'.$lang.'.php' );
                                if( isset( $LOCALIZATIONS ) && is_array( $LOCALIZATIONS )){
                                        $this->localizations = array_merge( $this->localizations, $LOCALIZATIONS );
                                }
@@ -231,8 +231,8 @@ class OC_L10N{
                global $SERVERROOT;
                
                // find the i18n dir
-               $i18ndir = $SERVERROOT.'/l10n/';
-               if( $app != 'core' && $app != '' ){
+               $i18ndir = $SERVERROOT.'/core/l10n/';
+               if( $app != '' ){
                        // Check if the app is in the app folder
                        if( file_exists( $SERVERROOT.'/apps/'.$app.'/l10n/' )){
                                $i18ndir = $SERVERROOT.'/apps/'.$app.'/l10n/';
diff --git a/log/l10n/da.po b/log/l10n/da.po
deleted file mode 100644 (file)
index 5a88aed..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-# 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"
-
diff --git a/log/l10n/de.po b/log/l10n/de.po
deleted file mode 100644 (file)
index a901754..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Jakob Sack <mail@jakobsack.de>, 2011.
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-06-19 16:44+0200\n"
-"PO-Revision-Date: 2011-06-19 16:54+0200\n"
-"Last-Translator: Jakob Sack <mail@jakobsack.de>\n"
-"Language-Team: German <kde-i18n-de@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 "Anmeldungen"
-
-#: ../templates/index.php:8
-msgid "Logouts"
-msgstr "Abmeldungen"
-
-#: ../templates/index.php:9
-msgid "Downloads"
-msgstr "Downloads"
-
-#: ../templates/index.php:10
-msgid "Uploads"
-msgstr "Uploads"
-
-#: ../templates/index.php:11
-msgid "Creations"
-msgstr "Erstellungen"
-
-#: ../templates/index.php:12
-msgid "Deletions"
-msgstr "Löschungen"
-
-#: ../templates/index.php:15
-msgid "Show:"
-msgstr "Zeige"
-
-#: ../templates/index.php:16
-msgid "entries per page."
-msgstr "Einträge pro Seite"
-
-#: ../templates/index.php:26
-msgid "What"
-msgstr "Was"
-
-#: ../templates/index.php:27
-msgid "When"
-msgstr "Wann"
-
-#: ../templates/index.php:45
-msgid "Clear log entries before"
-msgstr "Lösche Einträge vor dem"
-
-
diff --git a/log/l10n/log b/log/l10n/log
deleted file mode 100644 (file)
index f70eb6a..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-[General]
-LangCode=de
-ProjectID=oc_log
-TargetLangCode=de
diff --git a/log/l10n/messages.pot b/log/l10n/messages.pot
deleted file mode 100644 (file)
index 2da2355..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-# 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 16:53+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/index.php:4
-msgid "Filter:"
-msgstr ""
-
-#: ../templates/index.php:7
-msgid "Logins"
-msgstr ""
-
-#: ../templates/index.php:8
-msgid "Logouts"
-msgstr ""
-
-#: ../templates/index.php:9
-msgid "Downloads"
-msgstr ""
-
-#: ../templates/index.php:10
-msgid "Uploads"
-msgstr ""
-
-#: ../templates/index.php:11
-msgid "Creations"
-msgstr ""
-
-#: ../templates/index.php:12
-msgid "Deletions"
-msgstr ""
-
-#: ../templates/index.php:15
-msgid "Show:"
-msgstr ""
-
-#: ../templates/index.php:16
-msgid "entries per page."
-msgstr ""
-
-#: ../templates/index.php:26
-msgid "What"
-msgstr ""
-
-#: ../templates/index.php:27
-msgid "When"
-msgstr ""
-
-#: ../templates/index.php:45
-msgid "Clear log entries before"
-msgstr ""
diff --git a/log/l10n/nl.po b/log/l10n/nl.po
deleted file mode 100644 (file)
index 2da2355..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-# 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 16:53+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/index.php:4
-msgid "Filter:"
-msgstr ""
-
-#: ../templates/index.php:7
-msgid "Logins"
-msgstr ""
-
-#: ../templates/index.php:8
-msgid "Logouts"
-msgstr ""
-
-#: ../templates/index.php:9
-msgid "Downloads"
-msgstr ""
-
-#: ../templates/index.php:10
-msgid "Uploads"
-msgstr ""
-
-#: ../templates/index.php:11
-msgid "Creations"
-msgstr ""
-
-#: ../templates/index.php:12
-msgid "Deletions"
-msgstr ""
-
-#: ../templates/index.php:15
-msgid "Show:"
-msgstr ""
-
-#: ../templates/index.php:16
-msgid "entries per page."
-msgstr ""
-
-#: ../templates/index.php:26
-msgid "What"
-msgstr ""
-
-#: ../templates/index.php:27
-msgid "When"
-msgstr ""
-
-#: ../templates/index.php:45
-msgid "Clear log entries before"
-msgstr ""
diff --git a/settings/l10n/messages.pot b/settings/l10n/messages.pot
deleted file mode 100644 (file)
index 705d583..0000000
+++ /dev/null
@@ -1,86 +0,0 @@
-# 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-20 14:47+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/index.php:3
-msgid "Account information"
-msgstr ""
-
-#: ../templates/index.php:5
-msgid "You're currently using"
-msgstr ""
-
-#: ../templates/index.php:5
-msgid "of your"
-msgstr ""
-
-#: ../templates/index.php:5
-msgid "space"
-msgstr ""
-
-#: ../templates/index.php:11
-msgid "Change Password"
-msgstr ""
-
-#: ../templates/index.php:12
-msgid "Your password got changed"
-msgstr ""
-
-#: ../templates/index.php:15
-msgid "Old password:"
-msgstr ""
-
-#: ../templates/index.php:19
-msgid "New password"
-msgstr ""
-
-#: ../templates/index.php:24
-msgid "Show new password"
-msgstr ""
-
-#: ../templates/index.php:34
-msgid "Language"
-msgstr ""
-
-#: ../ajax/changepassword.php:13 ../ajax/setlanguage.php:13
-msgid "Authentication error"
-msgstr ""
-
-#: ../ajax/changepassword.php:19
-msgid "You have to enter the old and the new password!"
-msgstr ""
-
-#: ../ajax/changepassword.php:25
-msgid "Your old password is wrong!"
-msgstr ""
-
-#: ../ajax/changepassword.php:31
-msgid "Password changed"
-msgstr ""
-
-#: ../ajax/changepassword.php:34
-msgid "Unable to change password"
-msgstr ""
-
-#: ../ajax/setlanguage.php:21
-msgid "Language changed"
-msgstr ""
-
-#: ../ajax/setlanguage.php:23
-msgid "Invalid request"
-msgstr ""
diff --git a/settings/l10n/nl.po b/settings/l10n/nl.po
deleted file mode 100644 (file)
index 5b38f84..0000000
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Robin Appelman <icewind1991@gmail.com>, 2011.
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-06-20 14:47+0200\n"
-"PO-Revision-Date: 2011-06-20 14:48+0200\n"
-"Last-Translator: Robin Appelman <icewind1991@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:3
-msgid "Account information"
-msgstr "Gebruiks gegevens"
-
-#: ../templates/index.php:5
-msgid "You're currently using"
-msgstr "Je gebruikt momenteel"
-
-#: ../templates/index.php:5
-msgid "of your"
-msgstr "van de"
-
-#: ../templates/index.php:5
-msgid "space"
-msgstr "beschikbare ruimte."
-
-#: ../templates/index.php:11
-msgid "Change Password"
-msgstr "Wachtwoord aanpassen"
-
-#: ../templates/index.php:12
-msgid "Your password got changed"
-msgstr "Je wachtwoord is aangepast"
-
-#: ../templates/index.php:15
-msgid "Old password:"
-msgstr "Oud wachtwoord:"
-
-#: ../templates/index.php:19
-msgid "New password"
-msgstr "Nieuw wachtwoord"
-
-#: ../templates/index.php:24
-msgid "Show new password"
-msgstr "Toon nieuw wachtwoord"
-
-#: ../templates/index.php:34
-msgid "Language"
-msgstr "Taal"
-
-#: ../ajax/changepassword.php:13 ../ajax/setlanguage.php:13
-msgid "Authentication error"
-msgstr "Authenticatie fout."
-
-#: ../ajax/changepassword.php:19
-msgid "You have to enter the old and the new password!"
-msgstr "Je moet het oude en nieuwe wachtwoord invullen."
-
-#: ../ajax/changepassword.php:25
-msgid "Your old password is wrong!"
-msgstr "Het oude wachtwoord is verkeerd."
-
-#: ../ajax/changepassword.php:31
-msgid "Password changed"
-msgstr "Wachtwoord aangepast"
-
-#: ../ajax/changepassword.php:34
-msgid "Unable to change password"
-msgstr "Wachtwoord aanpassen is niet mogenlijk"
-
-#: ../ajax/setlanguage.php:21
-msgid "Language changed"
-msgstr "Taal aangepast"
-
-#: ../ajax/setlanguage.php:23
-msgid "Invalid request"
-msgstr "Ongeldige aanvraag"
-