From 4a5ee765cf5030c7d92d88687e886079f6bafb1e Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sat, 13 Aug 2011 04:04:48 +0200 Subject: [PATCH 01/27] merged admin, help and settings to settings --- admin/ajax/changepassword.php | 26 ------------- admin/appinfo/app.php | 5 --- admin/css/apps.css | 3 -- admin/css/users.css | 13 ------- admin/l10n/da.php | 19 --------- admin/l10n/de.php | 20 ---------- admin/l10n/es.php | 20 ---------- admin/l10n/fr.php | 20 ---------- admin/l10n/nl.php | 19 --------- admin/l10n/pl.php | 19 --------- admin/system.php | 36 ------------------ admin/templates/system.php | 2 - apps/contacts/appinfo/app.php | 2 +- help/appinfo/app.php | 5 --- help/css/help.css | 10 ----- help/l10n/bg_BG.php | 4 -- help/l10n/da.php | 4 -- help/l10n/de.php | 4 -- help/l10n/es.php | 4 -- help/l10n/fr.php | 4 -- help/l10n/nl.php | 4 -- help/l10n/pl.php | 4 -- lib/app.php | 10 ++--- settings/ajax/changepassword.php | 31 +++++---------- {admin => settings}/ajax/creategroup.php | 0 {admin => settings}/ajax/createuser.php | 0 {admin => settings}/ajax/disableapp.php | 0 {admin => settings}/ajax/enableapp.php | 0 {admin => settings}/ajax/removegroup.php | 0 {admin => settings}/ajax/removeuser.php | 0 {admin => settings}/ajax/togglegroups.php | 0 settings/appinfo/app.php | 2 + {admin => settings}/apps.php | 7 ++-- settings/css/settings.css | 28 +++++++++++++- help/index.php => settings/help.php | 4 +- {admin => settings}/img/apps.png | Bin {admin => settings}/img/apps.svg | 0 {help => settings}/img/help.png | Bin {help => settings}/img/help.svg | 0 {admin => settings}/img/users.png | Bin {admin => settings}/img/users.svg | 0 {admin => settings}/js/apps.js | 0 settings/js/{main.js => personal.js} | 0 {admin => settings}/js/users.js | 0 settings/{index.php => personal.php} | 6 +-- {admin => settings}/templates/apps.php | 0 .../index.php => settings/templates/help.php | 2 +- .../templates/{index.php => personal.php} | 0 {admin => settings}/templates/users.php | 4 +- {admin => settings}/users.php | 6 +-- 50 files changed, 60 insertions(+), 287 deletions(-) delete mode 100644 admin/ajax/changepassword.php delete mode 100644 admin/appinfo/app.php delete mode 100644 admin/css/apps.css delete mode 100644 admin/css/users.css delete mode 100644 admin/l10n/da.php delete mode 100644 admin/l10n/de.php delete mode 100644 admin/l10n/es.php delete mode 100644 admin/l10n/fr.php delete mode 100644 admin/l10n/nl.php delete mode 100644 admin/l10n/pl.php delete mode 100644 admin/system.php delete mode 100644 admin/templates/system.php delete mode 100644 help/appinfo/app.php delete mode 100644 help/css/help.css delete mode 100644 help/l10n/bg_BG.php delete mode 100644 help/l10n/da.php delete mode 100644 help/l10n/de.php delete mode 100644 help/l10n/es.php delete mode 100644 help/l10n/fr.php delete mode 100644 help/l10n/nl.php delete mode 100644 help/l10n/pl.php rename {admin => settings}/ajax/creategroup.php (100%) rename {admin => settings}/ajax/createuser.php (100%) rename {admin => settings}/ajax/disableapp.php (100%) rename {admin => settings}/ajax/enableapp.php (100%) rename {admin => settings}/ajax/removegroup.php (100%) rename {admin => settings}/ajax/removeuser.php (100%) rename {admin => settings}/ajax/togglegroups.php (100%) rename {admin => settings}/apps.php (90%) rename help/index.php => settings/help.php (81%) rename {admin => settings}/img/apps.png (100%) rename {admin => settings}/img/apps.svg (100%) rename {help => settings}/img/help.png (100%) rename {help => settings}/img/help.svg (100%) rename {admin => settings}/img/users.png (100%) rename {admin => settings}/img/users.svg (100%) rename {admin => settings}/js/apps.js (100%) rename settings/js/{main.js => personal.js} (100%) rename {admin => settings}/js/users.js (100%) rename settings/{index.php => personal.php} (90%) rename {admin => settings}/templates/apps.php (100%) rename help/templates/index.php => settings/templates/help.php (93%) rename settings/templates/{index.php => personal.php} (100%) rename {admin => settings}/templates/users.php (95%) rename {admin => settings}/users.php (91%) diff --git a/admin/ajax/changepassword.php b/admin/ajax/changepassword.php deleted file mode 100644 index 98c2a8b37a1..00000000000 --- a/admin/ajax/changepassword.php +++ /dev/null @@ -1,26 +0,0 @@ - "error", "data" => array( "message" => "Authentication error" ))); - exit(); -} - -$username = $_POST["username"]; -$password = $_POST["password"]; - -// Return Success story -if( OC_User::setPassword( $username, $password )){ - echo json_encode( array( "status" => "success", "data" => array( "username" => $username ))); -} -else{ - echo json_encode( array( "status" => "error", "data" => array( "message" => "Unable to change password" ))); -} - -?> diff --git a/admin/appinfo/app.php b/admin/appinfo/app.php deleted file mode 100644 index 80850638f71..00000000000 --- a/admin/appinfo/app.php +++ /dev/null @@ -1,5 +0,0 @@ - 1, "id" => "admin", "name" => "Administration" )); - -?> diff --git a/admin/css/apps.css b/admin/css/apps.css deleted file mode 100644 index 6106ff3f7ec..00000000000 --- a/admin/css/apps.css +++ /dev/null @@ -1,3 +0,0 @@ -li{color:#888} -li.active{color:#000} -span.version{margin-left:3em;color:#ddd} diff --git a/admin/css/users.css b/admin/css/users.css deleted file mode 100644 index 977e06e41c6..00000000000 --- a/admin/css/users.css +++ /dev/null @@ -1,13 +0,0 @@ -form { display:inline; } -td.name, td.password { padding-left:.8em; } -td.password>img, td.remove>img { display:none; cursor:pointer; } -td.password>span { margin-right:1.2em; } -td.password { width:12em; cursor:pointer; } - -td.remove { width:1em; } -tr:hover>td.password>span { margin:0; cursor:pointer; } -tr:hover>td.remove>img, tr:hover>td.password>img { display:inline; cursor:pointer; } -tr:hover>td.remove>img { float:right; } -li.selected { background-color:#ddd; } -#content>table { margin-top:6.5em; } -table { width:100%; } diff --git a/admin/l10n/da.php b/admin/l10n/da.php deleted file mode 100644 index 467c259dc37..00000000000 --- a/admin/l10n/da.php +++ /dev/null @@ -1,19 +0,0 @@ - "læs mere", -"INSTALL" => "INSTALLER", -"Apps Repository" => "Applikation arkiv", -"Cannot connect to apps repository" => "Kan ikke oprette forbindelse til applikations arkivet", -"Name" => "Navn", -"Modified" => "Ændret", -"Administration" => "Administration", -"System Settings" => "System indstillinger", -"Users" => "Brugere", -"Groups" => "Grupper", -"Password" => "Kodeord", -"remove" => "slet", -"Create group" => "Lav gruppe", -"Force new password:" => "Tving ny adgangskode", -"Set" => "Indstil", -"Do you really want to delete user" => "Vil du virkelig slette denne bruger?", -"Do you really want to delete group" => "Vil du virkelig slette denne gruppe?" -); diff --git a/admin/l10n/de.php b/admin/l10n/de.php deleted file mode 100644 index a1a0ec099e7..00000000000 --- a/admin/l10n/de.php +++ /dev/null @@ -1,20 +0,0 @@ - "mehr …", -"INSTALL" => "Installieren", -"Apps Repository" => "Anwendungen", -"Cannot connect to apps repository" => "Verbindung fehlgeschlagen", -"Name" => "Name", -"Modified" => "Änderungsdatum", -"Administration" => "Verwaltung", -"System Settings" => "Systemeinstellungen", -"Users" => "Nutzer", -"Groups" => "Gruppen", -"Password" => "Passwort", -"Create" => "Erstellen", -"remove" => "entfernen", -"Create group" => "Gruppe erstellen", -"Force new password:" => "Neues Passwort:", -"Set" => "OK", -"Do you really want to delete user" => "Möchtest du den Nutzer wirklich entfernen?", -"Do you really want to delete group" => "Möchtest du die Gruppe wirklich entfernen?" -); diff --git a/admin/l10n/es.php b/admin/l10n/es.php deleted file mode 100644 index 5902eb2c242..00000000000 --- a/admin/l10n/es.php +++ /dev/null @@ -1,20 +0,0 @@ - "leer más", -"INSTALL" => "Instalar", -"Apps Repository" => "Repositorio de aplicaciones ", -"Cannot connect to apps repository" => "No se pudo conectar con el repositorio de aplicaciones", -"Name" => "Nombre", -"Modified" => "Modificado", -"Administration" => "Administración", -"System Settings" => "Ajustes del Sistema", -"Users" => "Usuarios", -"Groups" => "Grupos", -"Password" => "Contraseña", -"Create" => "Crear", -"remove" => "Eliminar", -"Create group" => "Crear grupo", -"Force new password:" => "Forzar una nueva contraseña", -"Set" => "Aplicar", -"Do you really want to delete user" => "¿Seguro que quieres eliminar este usuario?", -"Do you really want to delete group" => "¿Seguro que quieres eliminar este grupo?" -); diff --git a/admin/l10n/fr.php b/admin/l10n/fr.php deleted file mode 100644 index e8d41a4be72..00000000000 --- a/admin/l10n/fr.php +++ /dev/null @@ -1,20 +0,0 @@ - "en lire plus", -"INSTALL" => "INSTALLATION", -"Apps Repository" => "Répertoire d'applications", -"Cannot connect to apps repository" => "Impossible de se connecter au répertoire d'applications", -"Name" => "Nom", -"Modified" => "Modifié le", -"Administration" => "Administration", -"System Settings" => "Préférences Système", -"Users" => "Utilisateurs", -"Groups" => "Groupes", -"Password" => "Mot de passe", -"Create" => "Créer", -"remove" => "retirer", -"Create group" => "Créer un groupe", -"Force new password:" => "Forcer un nouveau mot de passe :", -"Set" => "Appliquer", -"Do you really want to delete user" => "Voulez-vous réellement supprimer cet utilisateur", -"Do you really want to delete group" => "Voulez-vous réellement supprimer ce groupe" -); diff --git a/admin/l10n/nl.php b/admin/l10n/nl.php deleted file mode 100644 index 138c95d2c98..00000000000 --- a/admin/l10n/nl.php +++ /dev/null @@ -1,19 +0,0 @@ - "Meer informatie", -"INSTALL" => "Installeer", -"Apps Repository" => "Applicatiedatabase", -"Cannot connect to apps repository" => "Kan geen verbinding maken met de applicatiedatabase", -"Name" => "Naam", -"Modified" => "Laatst aangepast", -"Administration" => "Administratie", -"System Settings" => "Systeeminstellingen", -"Users" => "Gebruikers", -"Groups" => "Groepen", -"Password" => "Wachtwoord", -"remove" => "verwijder", -"Create group" => "Groep aanmaken", -"Force new password:" => "Forceer nieuw wachtwoord:", -"Set" => "Ok", -"Do you really want to delete user" => "Wilt u deze gebruiker verwijderen", -"Do you really want to delete group" => "Wilt u deze groep verwijderen" -); diff --git a/admin/l10n/pl.php b/admin/l10n/pl.php deleted file mode 100644 index 169bb37b109..00000000000 --- a/admin/l10n/pl.php +++ /dev/null @@ -1,19 +0,0 @@ - "czytaj więcej", -"INSTALL" => "INSTALUJ", -"Apps Repository" => "Repozytorium aplikacji", -"Cannot connect to apps repository" => "Nie można połączyć się z repozytorium aplikacji", -"Name" => "Nazwa", -"Modified" => "Zmodyfikowano", -"Administration" => "Administracja", -"System Settings" => "Ustawienia systemowe", -"Users" => "Użytkownicy", -"Groups" => "Grupy", -"Password" => "Hasło", -"remove" => "usuń", -"Create group" => "Utwórz grupę", -"Force new password:" => "Wymuś nowe hasło", -"Set" => "Ustaw", -"Do you really want to delete user" => "Czy naprawdę chcesz usunąć użytkownika", -"Do you really want to delete group" => "Czy naprawdę chcesz usunąć grupę" -); diff --git a/admin/system.php b/admin/system.php deleted file mode 100644 index 42ae8a6c2d1..00000000000 --- a/admin/system.php +++ /dev/null @@ -1,36 +0,0 @@ -. -* -*/ - -require_once('../lib/base.php'); -if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' )){ - header( "Location: ".OC_Helper::linkTo( "", "index.php" )); - exit(); -} - -OC_App::setActiveNavigationEntry( "administration" ); - -$tmpl = new OC_Template( "admin", "system", "user" ); -$tmpl->printPage(); - -?> - diff --git a/admin/templates/system.php b/admin/templates/system.php deleted file mode 100644 index bbe4d2757a3..00000000000 --- a/admin/templates/system.php +++ /dev/null @@ -1,2 +0,0 @@ -

t( 'System Settings' ); ?>

-#TBD diff --git a/apps/contacts/appinfo/app.php b/apps/contacts/appinfo/app.php index 4fbbd9c638c..7ae6be5d6e3 100644 --- a/apps/contacts/appinfo/app.php +++ b/apps/contacts/appinfo/app.php @@ -14,5 +14,5 @@ OC_App::addNavigationEntry( array( 'id' => 'contacts_index', 'order' => 10, 'href' => OC_Helper::linkTo( 'contacts', 'index.php' ), - 'icon' => OC_Helper::imagePath( 'admin', 'users.svg' ), + 'icon' => OC_Helper::imagePath( 'settings', 'users.svg' ), 'name' => 'Contacts' )); diff --git a/help/appinfo/app.php b/help/appinfo/app.php deleted file mode 100644 index 372e28c97bd..00000000000 --- a/help/appinfo/app.php +++ /dev/null @@ -1,5 +0,0 @@ - 1, "id" => "help", "name" => "Help" )); - -?> diff --git a/help/css/help.css b/help/css/help.css deleted file mode 100644 index 2722c676a66..00000000000 --- a/help/css/help.css +++ /dev/null @@ -1,10 +0,0 @@ -/* APPS TABLE */ -table td.date { width:5em; padding:.5em 1em; text-align:right; } -.preview { padding:3px; text-align:left; } -table td.date { width:11em; color:#555555; } -table td.selection, table th.selection, table td.fileaction { width:2em; text-align:center; } -table td.name a { padding:6px; text-decoration:none; color:#555555; } -.type { text-decoration:none; color:#888888; font-size:.8em; } -.description { text-decoration:none; color:#666666; font-size:.9em; } - -table#help tr td { white-space:normal; } diff --git a/help/l10n/bg_BG.php b/help/l10n/bg_BG.php deleted file mode 100644 index 44f260693b3..00000000000 --- a/help/l10n/bg_BG.php +++ /dev/null @@ -1,4 +0,0 @@ - "Въпроси и отговори", -"ASK A QUESTION" => "ЗАДАЙТЕ ВЪПРОС" -); diff --git a/help/l10n/da.php b/help/l10n/da.php deleted file mode 100644 index 2b8120c0c38..00000000000 --- a/help/l10n/da.php +++ /dev/null @@ -1,4 +0,0 @@ - "Spørgsmål og Svar", -"ASK A QUESTION" => "STIL ET SPØRGSMÅL" -); diff --git a/help/l10n/de.php b/help/l10n/de.php deleted file mode 100644 index 07c5d1bb771..00000000000 --- a/help/l10n/de.php +++ /dev/null @@ -1,4 +0,0 @@ - "Fragen & Antworten", -"ASK A QUESTION" => "Stell eine Frage" -); diff --git a/help/l10n/es.php b/help/l10n/es.php deleted file mode 100644 index e42c9db85de..00000000000 --- a/help/l10n/es.php +++ /dev/null @@ -1,4 +0,0 @@ - "Preguntas y Respuestas", -"ASK A QUESTION" => "Haz una pregunta" -); diff --git a/help/l10n/fr.php b/help/l10n/fr.php deleted file mode 100644 index 2b9bf96684d..00000000000 --- a/help/l10n/fr.php +++ /dev/null @@ -1,4 +0,0 @@ - "Questions / Réponses", -"ASK A QUESTION" => "Poser une question" -); diff --git a/help/l10n/nl.php b/help/l10n/nl.php deleted file mode 100644 index 11a28894c72..00000000000 --- a/help/l10n/nl.php +++ /dev/null @@ -1,4 +0,0 @@ - "Vraag en Antwoord", -"ASK A QUESTION" => "Stel een vraag" -); diff --git a/help/l10n/pl.php b/help/l10n/pl.php deleted file mode 100644 index 7d37913d037..00000000000 --- a/help/l10n/pl.php +++ /dev/null @@ -1,4 +0,0 @@ - "Pytania i odpowiedzi", -"ASK A QUESTION" => "ZADAJ PYTANIE" -); diff --git a/lib/app.php b/lib/app.php index e7cf74af85c..e9f97a4354e 100644 --- a/lib/app.php +++ b/lib/app.php @@ -52,7 +52,7 @@ class OC_App{ } // Our very own core apps are hardcoded - foreach( array( 'admin', 'files', 'help', 'settings' ) as $app ){ + foreach( array('files', 'settings') as $app ){ require( $app.'/appinfo/app.php' ); } @@ -200,13 +200,13 @@ class OC_App{ public static function getSettingsNavigation(){ $l=new OC_L10N('core'); $admin=array( - array( "id" => "core_users", "order" => 2, "href" => OC_Helper::linkTo( "admin", "users.php" ), "name" => $l->t("Users"), "icon" => OC_Helper::imagePath( "admin", "users.svg" )), - array( "id" => "core_apps", "order" => 3, "href" => OC_Helper::linkTo( "admin", "apps.php?installed" ), "name" => $l->t("Apps"), "icon" => OC_Helper::imagePath( "admin", "apps.svg" )), + array( "id" => "core_users", "order" => 2, "href" => OC_Helper::linkTo( "settings", "users.php" ), "name" => $l->t("Users"), "icon" => OC_Helper::imagePath( "settings", "users.svg" )), + array( "id" => "core_apps", "order" => 3, "href" => OC_Helper::linkTo( "settings", "apps.php?installed" ), "name" => $l->t("Apps"), "icon" => OC_Helper::imagePath( "settings", "apps.svg" )), // array( "id" => "files_administration", "order" => 3, "href" => OC_Helper::linkTo( "files", "admin.php" ), "name" => $l->t("Files"), "icon" => OC_Helper::imagePath( "settings", "options.svg" )), ); $settings=array( - array( "id" => "help", "order" => 1000, "href" => OC_Helper::linkTo( "help", "index.php" ), "name" => $l->t("Help"), "icon" => OC_Helper::imagePath( "help", "help.svg" )), - array( "id" => "settings", "order" => 1, "href" => OC_Helper::linkTo( "settings", "index.php" ), "name" => $l->t("Personal"), "icon" => OC_Helper::imagePath( "settings", "personal.svg" )) + array( "id" => "help", "order" => 1000, "href" => OC_Helper::linkTo( "settings", "help.php" ), "name" => $l->t("Help"), "icon" => OC_Helper::imagePath( "settings", "help.svg" )), + array( "id" => "settings", "order" => 1, "href" => OC_Helper::linkTo( "settings", "personal.php" ), "name" => $l->t("Personal"), "icon" => OC_Helper::imagePath( "settings", "personal.svg" )) ); if( OC_Group::inGroup( $_SESSION["user_id"], "admin" )){ $settings=array_merge($admin,$settings); diff --git a/settings/ajax/changepassword.php b/settings/ajax/changepassword.php index b9b2417ad9a..98c2a8b37a1 100644 --- a/settings/ajax/changepassword.php +++ b/settings/ajax/changepassword.php @@ -3,35 +3,24 @@ // Init owncloud require_once('../../lib/base.php'); -$l=new OC_L10N('settings'); - // We send json data -header("Content-Type: application/jsonrequest"); +header( "Content-Type: application/jsonrequest" ); // Check if we are a user -if(!OC_User::isLoggedIn()){ - echo json_encode(array("status" => "error", "data" => array("message" => $l->t("Authentication error")))); +if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' )){ + echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" ))); exit(); } -// Get data -if(!isset($_POST["password"]) && !isset($_POST["oldpassword"])){ - echo json_encode(array("status" => "error", "data" => array("message" => $l->t("You have to enter the old and the new password!")))); - exit(); -} +$username = $_POST["username"]; +$password = $_POST["password"]; -// Check if the old password is correct -if(!OC_User::checkPassword($_SESSION["user_id"], $_POST["oldpassword"])){ - echo json_encode(array("status" => "error", "data" => array("message" => $l->t("Your old password is wrong!")))); - exit(); +// Return Success story +if( OC_User::setPassword( $username, $password )){ + echo json_encode( array( "status" => "success", "data" => array( "username" => $username ))); } - -// Change password -if(OC_User::setPassword($_SESSION["user_id"], $_POST["password"])){ - echo json_encode(array("status" => "success", "data" => array("message" => $l->t("Password changed")))); - OC_Crypt::changekeypasscode($_POST["password"]); -}else{ - echo json_encode(array("status" => "error", "data" => array("message" => $l->t("Unable to change password")))); +else{ + echo json_encode( array( "status" => "error", "data" => array( "message" => "Unable to change password" ))); } ?> diff --git a/admin/ajax/creategroup.php b/settings/ajax/creategroup.php similarity index 100% rename from admin/ajax/creategroup.php rename to settings/ajax/creategroup.php diff --git a/admin/ajax/createuser.php b/settings/ajax/createuser.php similarity index 100% rename from admin/ajax/createuser.php rename to settings/ajax/createuser.php diff --git a/admin/ajax/disableapp.php b/settings/ajax/disableapp.php similarity index 100% rename from admin/ajax/disableapp.php rename to settings/ajax/disableapp.php diff --git a/admin/ajax/enableapp.php b/settings/ajax/enableapp.php similarity index 100% rename from admin/ajax/enableapp.php rename to settings/ajax/enableapp.php diff --git a/admin/ajax/removegroup.php b/settings/ajax/removegroup.php similarity index 100% rename from admin/ajax/removegroup.php rename to settings/ajax/removegroup.php diff --git a/admin/ajax/removeuser.php b/settings/ajax/removeuser.php similarity index 100% rename from admin/ajax/removeuser.php rename to settings/ajax/removeuser.php diff --git a/admin/ajax/togglegroups.php b/settings/ajax/togglegroups.php similarity index 100% rename from admin/ajax/togglegroups.php rename to settings/ajax/togglegroups.php diff --git a/settings/appinfo/app.php b/settings/appinfo/app.php index 4ffb944aba3..d18bcdbff0d 100644 --- a/settings/appinfo/app.php +++ b/settings/appinfo/app.php @@ -1,5 +1,7 @@ "settings", "name" => "Settings" )); +OC_App::register( array( "order" => 1, "id" => "admin", "name" => "Administration" )); +OC_App::register( array( "order" => 1, "id" => "help", "name" => "Help" )); ?> diff --git a/admin/apps.php b/settings/apps.php similarity index 90% rename from admin/apps.php rename to settings/apps.php index c74f9032916..e41a0cbf8dd 100644 --- a/admin/apps.php +++ b/settings/apps.php @@ -28,8 +28,9 @@ if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' )) } // Load the files we need -OC_Util::addStyle( "admin", "apps" ); -OC_Util::addScript( "admin", "apps" ); +OC_Util::addStyle( "settings", "settings" ); +OC_Util::addScript( "settings", "apps" ); +OC_App::setActiveNavigationEntry( "core_apps" ); $registeredApps=OC_App::getAllApps(); $apps=array(); @@ -59,7 +60,7 @@ foreach($externalApps as $app){ -$tmpl = new OC_Template( "admin", "apps", "user" ); +$tmpl = new OC_Template( "settings", "apps", "user" ); $tmpl->assign('apps',$apps); $tmpl->printPage(); diff --git a/settings/css/settings.css b/settings/css/settings.css index 66299b1faa0..7499de1e053 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -1,4 +1,30 @@ +/* PERSONAL */ #passworderror { display:none; } #passwordchanged { display:none; } - input#identity { width:20em; } + + +/* USERS */ +form { display:inline; } +td.name, td.password { padding-left:.8em; } +td.password>img, td.remove>img { display:none; cursor:pointer; } +td.password>span { margin-right:1.2em; } +td.password { width:12em; cursor:pointer; } + +td.remove { width:1em; } +tr:hover>td.password>span { margin:0; cursor:pointer; } +tr:hover>td.remove>img, tr:hover>td.password>img { display:inline; cursor:pointer; } +tr:hover>td.remove>img { float:right; } +li.selected { background-color:#ddd; } +#content>table { margin-top:6.5em; } +table { width:100%; } + + +/* APPS */ +li{color:#888} +li.active{color:#000} +span.version{margin-left:3em;color:#ddd} + + +/* HELP */ +table#help tr td { white-space:normal; } diff --git a/help/index.php b/settings/help.php similarity index 81% rename from help/index.php rename to settings/help.php index 7eb0c6b1820..b6466d282bf 100644 --- a/help/index.php +++ b/settings/help.php @@ -12,13 +12,13 @@ $page=2; // Load the files we need -OC_Util::addStyle( "help", "help" ); +OC_Util::addStyle( "settings", "settings" ); OC_App::setActiveNavigationEntry( "help" ); $kbe=OC_OCSClient::getKnownledgebaseEntries(); -$tmpl = new OC_Template( "help", "index", "user" ); +$tmpl = new OC_Template( "settings", "help", "user" ); $tmpl->assign( "kbe", $kbe ); $tmpl->assign( "pagecount", $pagecount ); $tmpl->assign( "page", $page ); diff --git a/admin/img/apps.png b/settings/img/apps.png similarity index 100% rename from admin/img/apps.png rename to settings/img/apps.png diff --git a/admin/img/apps.svg b/settings/img/apps.svg similarity index 100% rename from admin/img/apps.svg rename to settings/img/apps.svg diff --git a/help/img/help.png b/settings/img/help.png similarity index 100% rename from help/img/help.png rename to settings/img/help.png diff --git a/help/img/help.svg b/settings/img/help.svg similarity index 100% rename from help/img/help.svg rename to settings/img/help.svg diff --git a/admin/img/users.png b/settings/img/users.png similarity index 100% rename from admin/img/users.png rename to settings/img/users.png diff --git a/admin/img/users.svg b/settings/img/users.svg similarity index 100% rename from admin/img/users.svg rename to settings/img/users.svg diff --git a/admin/js/apps.js b/settings/js/apps.js similarity index 100% rename from admin/js/apps.js rename to settings/js/apps.js diff --git a/settings/js/main.js b/settings/js/personal.js similarity index 100% rename from settings/js/main.js rename to settings/js/personal.js diff --git a/admin/js/users.js b/settings/js/users.js similarity index 100% rename from admin/js/users.js rename to settings/js/users.js diff --git a/settings/index.php b/settings/personal.php similarity index 90% rename from settings/index.php rename to settings/personal.php index aea35054930..d2c29019ca5 100644 --- a/settings/index.php +++ b/settings/personal.php @@ -7,9 +7,9 @@ if( !OC_User::isLoggedIn()){ } // Highlight navigation entry -OC_App::setActiveNavigationEntry( "settings" ); -OC_Util::addScript( "settings", "main" ); +OC_Util::addScript( "settings", "personal" ); OC_Util::addStyle( "settings", "settings" ); +OC_App::setActiveNavigationEntry( "settings" ); // calculate the disc space $used=OC_Filesystem::filesize('/'); @@ -24,7 +24,7 @@ unset($languages[array_search($lang,$languages)]); array_unshift($languages,$lang); // Return template -$tmpl = new OC_Template( "settings", "index", "user"); +$tmpl = new OC_Template( "settings", "personal", "user"); $tmpl->assign('usage',OC_Helper::humanFileSize($used)); $tmpl->assign('total_space',OC_Helper::humanFileSize($total)); $tmpl->assign('usage_relative',$relative); diff --git a/admin/templates/apps.php b/settings/templates/apps.php similarity index 100% rename from admin/templates/apps.php rename to settings/templates/apps.php diff --git a/help/templates/index.php b/settings/templates/help.php similarity index 93% rename from help/templates/index.php rename to settings/templates/help.php index ef5510e78b4..4cd748c3dff 100644 --- a/help/templates/index.php +++ b/settings/templates/help.php @@ -14,7 +14,7 @@ printPage(); ?> diff --git a/settings/templates/index.php b/settings/templates/personal.php similarity index 100% rename from settings/templates/index.php rename to settings/templates/personal.php diff --git a/admin/templates/users.php b/settings/templates/users.php similarity index 95% rename from admin/templates/users.php rename to settings/templates/users.php index 77a4f0c0d57..0009c85fa38 100644 --- a/admin/templates/users.php +++ b/settings/templates/users.php @@ -22,7 +22,7 @@ foreach($_["groups"] as $group) { ●●●●●●● - + -

t( 'SQLite will be used.' ); ?>

+

SQLite t( 'will be used' ); ?>.

/> - + -

t( 'MySQL will be used.' ); ?>

+

MySQL t( 'will be used' ); ?>.

/> @@ -50,7 +50,7 @@ -

t( 'PostgreSQL will be used.' ); ?>

+

PostgreSQL t( 'will be used' ); ?>.

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 @@ - + diff --git a/files/templates/admin.php b/files/templates/admin.php index e0cf2608301..0122865ee72 100644 --- a/files/templates/admin.php +++ b/files/templates/admin.php @@ -7,14 +7,4 @@ No settings currently available. - diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 63deb14b5c5..3d7bd63e6d3 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Stefan Ilivanov , 2011. +# Jan-Christoph Borchardt , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-28 00:33+0000\n" -"Last-Translator: ep98 \n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 03:02+0000\n" +"Last-Translator: JanCBorchardt \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,112 +18,93 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../templates/404.php:15 -msgid "Error 404, Cloud not found" -msgstr "Грешка 404, обклакът не намерен" - -#: ../templates/installation.php:6 -msgid "ownCloud is your personal web storage." -msgstr "" +#: templates/login.php:4 +msgid "Login failed!" +msgstr "Входа пропадна!" -#: ../templates/installation.php:7 -msgid "Finish the setup by following the steps below." +#: templates/login.php:9 templates/login.php:13 +msgid "remember" msgstr "" -#: ../templates/installation.php:26 -msgid "Create an admin account." +#: templates/installation.php:20 +msgid "Create an admin account" msgstr "" -#: ../templates/installation.php:27 +#: templates/installation.php:21 msgid "Username" msgstr "" -#: ../templates/installation.php:28 +#: templates/installation.php:22 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 the database." +#: templates/installation.php:27 +msgid "Configure the database" msgstr "" -#: ../templates/installation.php:43 -msgid "SQLite will be used for the database. You have nothing to do." +#: templates/installation.php:32 templates/installation.php:43 +#: templates/installation.php:53 +msgid "will be used" msgstr "" -#: ../templates/installation.php:46 -msgid "SQLite" -msgstr "SQLite" - -#: ../templates/installation.php:53 -msgid "MySQL will be used for the database." +#: templates/installation.php:64 +msgid "Database user" msgstr "" -#: ../templates/installation.php:59 -msgid "MySQL username:" +#: templates/installation.php:65 +msgid "Database password" msgstr "" -#: ../templates/installation.php:60 -msgid "MySQL password:" -msgstr "" +#: templates/installation.php:66 +msgid "Database name" +msgstr "Име на базата" -#: ../templates/installation.php:61 -msgid "Database name:" -msgstr "Име на базата:" +#: templates/installation.php:74 +msgid "Advanced" +msgstr "Разширено" + +#: templates/installation.php:77 +msgid "Host" +msgstr "хост" -#: ../templates/installation.php:62 -msgid "Host:" -msgstr "хост:" +#: templates/installation.php:78 +msgid "Table prefix" +msgstr "Префикс за таблиците" -#: ../templates/installation.php:63 -msgid "Table prefix:" -msgstr "Префикс за таблиците:" +#: templates/installation.php:80 +msgid "Data folder" +msgstr "Директория за данни" -#: ../templates/installation.php:69 +#: templates/installation.php:83 msgid "Finish setup" msgstr "Завършване на настройките" -#: ../templates/layout.guest.php:33 -msgid "" -"ownCloud is a personal cloud which runs" -" on your own server.

" -msgstr "" -"ownCloud е персонален облак който " -"работи от Ваш собствен сървър.

" - -#: ../templates/login.php:6 -msgid "Login failed!" -msgstr "Входа пропадна!" +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "обклакът не намерен" -#: ../templates/login.php:11 ../templates/login.php:15 -msgid "Remember login" -msgstr "" - -#: ../templates/logout.php:1 -msgid "You are logged out." -msgstr "Вие излязохте." +#: templates/layout.guest.php:38 +msgid "is a personal cloud which runs on your own server" +msgstr "е персонален облак който работи от Ваш собствен сървър" -#: ../templates/part.pagenavi.php:6 +#: templates/part.pagenavi.php:6 msgid "prev" msgstr "пред." -#: ../templates/part.pagenavi.php:26 +#: templates/part.pagenavi.php:26 msgid "next" msgstr "следващо" -#: ../templates/part.searchbox.php:3 -msgid "Search" -msgstr "Търсене" +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Вие излязохте." + +#: templates/layout.user.php:36 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:56 +msgid "Settings" +msgstr "" diff --git a/l10n/bg_BG/help.po b/l10n/bg_BG/help.po deleted file mode 100644 index b204195b8be..00000000000 --- a/l10n/bg_BG/help.po +++ /dev/null @@ -1,28 +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. -# -# Stefan Ilivanov , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 21:21+0000\n" -"Last-Translator: ep98 \n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../templates/index.php:2 -msgid "Questions and Answers" -msgstr "Въпроси и отговори" - -#: ../templates/index.php:24 -msgid "ASK A QUESTION" -msgstr "ЗАДАЙТЕ ВЪПРОС" - - diff --git a/l10n/bg_BG/log.po b/l10n/bg_BG/log.po deleted file mode 100644 index ff886397449..00000000000 --- a/l10n/bg_BG/log.po +++ /dev/null @@ -1,68 +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. -# -# Stefan Ilivanov , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 21:23+0000\n" -"Last-Translator: ep98 \n" -"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg_BG\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\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/bg_BG/settings.po b/l10n/bg_BG/settings.po index e6ad1aaf6ee..f1d431bc8f3 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 21:25+0000\n" -"Last-Translator: ep98 \n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: JanCBorchardt \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,72 +17,96 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../templates/index.php:3 +#: ajax/openid.php:13 ajax/setlanguage.php:13 +msgid "Authentication error" +msgstr "Проблем с индентификацията" + +#: ajax/openid.php:21 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:23 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "Невалидна заявка" + +#: ajax/setlanguage.php:21 +msgid "Language changed" +msgstr "Езика е сменен" + +#: templates/help.php:21 +msgid "Ask a question" +msgstr "" + +#: templates/apps.php:12 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:14 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:14 +msgid "by" +msgstr "" + +#: templates/personal.php:3 msgid "Account information" msgstr "Информация за профила" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "You're currently using" msgstr "Вие ползвате" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "of your" msgstr "на Вашето" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "space" msgstr "място" -#: ../templates/index.php:11 +#: templates/personal.php:11 templates/personal.php:17 msgid "Change Password" msgstr "Промяна на парола" -#: ../templates/index.php:12 +#: templates/personal.php:12 msgid "Your password got changed" msgstr "Вашата парола е сменена" -#: ../templates/index.php:15 -msgid "Old password:" -msgstr "Стара парола" +#: templates/personal.php:14 +msgid "Old password" +msgstr "" -#: ../templates/index.php:19 +#: templates/personal.php:15 msgid "New password" msgstr "Нова парола" -#: ../templates/index.php:24 -msgid "Show new password" -msgstr "Покажи новата парола" +#: templates/personal.php:16 +msgid "show" +msgstr "" -#: ../templates/index.php:34 +#: templates/personal.php:23 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 "Вашата стара парола е грешна!" +#: templates/users.php:11 +msgid "Name" +msgstr "" -#: ../ajax/changepassword.php:31 -msgid "Password changed" -msgstr "Паролата е сменена" +#: templates/users.php:12 +msgid "Password" +msgstr "" -#: ../ajax/changepassword.php:34 -msgid "Unable to change password" -msgstr "Невъзможна смяна на паролата" +#: templates/users.php:13 templates/users.php:28 +msgid "Groups" +msgstr "" -#: ../ajax/setlanguage.php:21 -msgid "Language changed" -msgstr "Езика е сменен" +#: templates/users.php:18 +msgid "Create" +msgstr "" -#: ../ajax/setlanguage.php:23 -msgid "Invalid request" -msgstr "Невалидна заявка" +#: templates/users.php:36 +msgid "Remove" +msgstr "" diff --git a/l10n/da/admin.po b/l10n/da/admin.po deleted file mode 100644 index 82c29165438..00000000000 --- a/l10n/da/admin.po +++ /dev/null @@ -1,93 +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. -# -# Jan-Christoph Borchardt , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-28 00:09+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../templates/app.php:22 -msgid "read more" -msgstr "læs mere" - -#: ../templates/app.php:24 -msgid "INSTALL" -msgstr "INSTALLER" - -#: ../templates/app_noconn.php:6 ../templates/apps.php:6 -msgid "Apps Repository" -msgstr "Applikation arkiv" - -#: ../templates/app_noconn.php:7 -msgid "Cannot connect to apps repository" -msgstr "Kan ikke oprette forbindelse til applikations arkivet" - -#: ../templates/apps.php:13 ../templates/users.php:6 ../templates/users.php:15 -#: ../templates/users.php:51 -msgid "Name" -msgstr "Navn" - -#: ../templates/apps.php:14 -msgid "Modified" -msgstr "Ændret" - -#: ../templates/system.php:6 -msgid "Administration" -msgstr "Administration" - -#: ../templates/system.php:7 -msgid "System Settings" -msgstr "System indstillinger" - -#: ../templates/users.php:2 -msgid "Users" -msgstr "Brugere" - -#: ../templates/users.php:7 ../templates/users.php:47 -msgid "Groups" -msgstr "Grupper" - -#: ../templates/users.php:16 -msgid "Password" -msgstr "Kodeord" - -#: ../templates/users.php:25 -msgid "Create" -msgstr "" - -#: ../templates/users.php:37 ../templates/users.php:69 -msgid "remove" -msgstr "slet" - -#: ../templates/users.php:59 -msgid "Create group" -msgstr "Lav gruppe" - -#: ../templates/users.php:95 -msgid "Force new password:" -msgstr "Tving ny adgangskode" - -#: ../templates/users.php:97 -msgid "Set" -msgstr "Indstil" - -#: ../templates/users.php:103 -msgid "Do you really want to delete user" -msgstr "Vil du virkelig slette denne bruger?" - -#: ../templates/users.php:110 -msgid "Do you really want to delete group" -msgstr "Vil du virkelig slette denne gruppe?" - - diff --git a/l10n/da/core.po b/l10n/da/core.po index 0b37d9ac8ce..28767ff39d8 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-28 00:33+0000\n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:33+0000\n" "Last-Translator: JanCBorchardt \n" "Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" "MIME-Version: 1.0\n" @@ -16,112 +16,93 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../templates/404.php:15 -msgid "Error 404, Cloud not found" -msgstr "Fejl 404, Skyen kan ikke findes" - -#: ../templates/installation.php:6 -msgid "ownCloud is your personal web storage." -msgstr "" +#: templates/login.php:4 +msgid "Login failed!" +msgstr "Login mislykkedes" -#: ../templates/installation.php:7 -msgid "Finish the setup by following the steps below." +#: templates/login.php:9 templates/login.php:13 +msgid "remember" msgstr "" -#: ../templates/installation.php:26 -msgid "Create an admin account." +#: templates/installation.php:20 +msgid "Create an admin account" msgstr "" -#: ../templates/installation.php:27 +#: templates/installation.php:21 msgid "Username" msgstr "" -#: ../templates/installation.php:28 +#: templates/installation.php:22 msgid "Password" msgstr "" -#: ../templates/installation.php:31 -msgid "Advanced" -msgstr "Avanceret" +#: templates/installation.php:27 +msgid "Configure the database" +msgstr "" -#: ../templates/installation.php:34 -msgid "Set where to store the data." -msgstr "Indstil data mappe." +#: templates/installation.php:32 templates/installation.php:43 +#: templates/installation.php:53 +msgid "will be used" +msgstr "" -#: ../templates/installation.php:35 -msgid "Data directory:" -msgstr "Data mappe:" +#: templates/installation.php:64 +msgid "Database user" +msgstr "" -#: ../templates/installation.php:39 -msgid "Configure the database." +#: templates/installation.php:65 +msgid "Database password" msgstr "" -#: ../templates/installation.php:43 -msgid "SQLite will be used for the database. You have nothing to do." +#: templates/installation.php:66 +msgid "Database name" msgstr "" -#: ../templates/installation.php:46 -msgid "SQLite" -msgstr "SQLite" +#: templates/installation.php:74 +msgid "Advanced" +msgstr "Avanceret" -#: ../templates/installation.php:53 -msgid "MySQL will be used for the database." +#: templates/installation.php:77 +msgid "Host" msgstr "" -#: ../templates/installation.php:59 -msgid "MySQL username:" +#: templates/installation.php:78 +msgid "Table prefix" msgstr "" -#: ../templates/installation.php:60 -msgid "MySQL password:" +#: templates/installation.php:80 +msgid "Data folder" msgstr "" -#: ../templates/installation.php:61 -msgid "Database name:" -msgstr "Database navn:" - -#: ../templates/installation.php:62 -msgid "Host:" -msgstr "Host:" - -#: ../templates/installation.php:63 -msgid "Table prefix:" -msgstr "Tabel prefix:" - -#: ../templates/installation.php:69 +#: templates/installation.php:83 msgid "Finish setup" msgstr "Afslut installation" -#: ../templates/layout.guest.php:33 -msgid "" -"ownCloud is a personal cloud which runs" -" on your own server.

" +#: templates/404.php:12 +msgid "Cloud not found" msgstr "" -"ownCloud er din personly sky der køre " -"på din egen server.

" - -#: ../templates/login.php:6 -msgid "Login failed!" -msgstr "Login mislykkedes" -#: ../templates/login.php:11 ../templates/login.php:15 -msgid "Remember login" +#: templates/layout.guest.php:38 +msgid "is a personal cloud which runs on your own server" msgstr "" -#: ../templates/logout.php:1 -msgid "You are logged out." -msgstr "Du er nu logget ud" - -#: ../templates/part.pagenavi.php:6 +#: templates/part.pagenavi.php:6 msgid "prev" msgstr "forrige" -#: ../templates/part.pagenavi.php:26 +#: templates/part.pagenavi.php:26 msgid "next" msgstr "næste" -#: ../templates/part.searchbox.php:3 -msgid "Search" -msgstr "Søg" +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Du er nu logget ud" + +#: templates/layout.user.php:36 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:56 +msgid "Settings" +msgstr "" diff --git a/l10n/da/help.po b/l10n/da/help.po deleted file mode 100644 index e3300adc4d4..00000000000 --- a/l10n/da/help.po +++ /dev/null @@ -1,27 +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. -# -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:17+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../templates/index.php:2 -msgid "Questions and Answers" -msgstr "Spørgsmål og Svar" - -#: ../templates/index.php:24 -msgid "ASK A QUESTION" -msgstr "STIL ET SPØRGSMÅL" - - diff --git a/l10n/da/log.po b/l10n/da/log.po deleted file mode 100644 index b52c2ad512c..00000000000 --- a/l10n/da/log.po +++ /dev/null @@ -1,67 +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. -# -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:17+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\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/da/settings.po b/l10n/da/settings.po index 17e84dbfcd0..ec00a325a4c 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:17+0000\n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" "Last-Translator: JanCBorchardt \n" "Language-Team: Danish (http://www.transifex.net/projects/p/owncloud/team/da/)\n" "MIME-Version: 1.0\n" @@ -16,72 +16,96 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../templates/index.php:3 +#: ajax/openid.php:13 ajax/setlanguage.php:13 +msgid "Authentication error" +msgstr "Godkendelsesfejl" + +#: ajax/openid.php:21 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:23 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "Invalid forespørgsel" + +#: ajax/setlanguage.php:21 +msgid "Language changed" +msgstr "Sprog ændret" + +#: templates/help.php:21 +msgid "Ask a question" +msgstr "" + +#: templates/apps.php:12 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:14 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:14 +msgid "by" +msgstr "" + +#: templates/personal.php:3 msgid "Account information" msgstr "Konto information" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "You're currently using" msgstr "Du udnytter i øjeblikket" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "of your" msgstr "af din" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "space" msgstr "plads" -#: ../templates/index.php:11 +#: templates/personal.php:11 templates/personal.php:17 msgid "Change Password" msgstr "Ændre adgangskode" -#: ../templates/index.php:12 +#: templates/personal.php:12 msgid "Your password got changed" msgstr "Din adgangskode er ændret" -#: ../templates/index.php:15 -msgid "Old password:" -msgstr "Gamle adgangskode" +#: templates/personal.php:14 +msgid "Old password" +msgstr "" -#: ../templates/index.php:19 +#: templates/personal.php:15 msgid "New password" msgstr "Nye adgangskode" -#: ../templates/index.php:24 -msgid "Show new password" -msgstr "Vis den nye adgangskode" +#: templates/personal.php:16 +msgid "show" +msgstr "" -#: ../templates/index.php:34 +#: templates/personal.php:23 msgid "Language" msgstr "Sprog" -#: ../ajax/changepassword.php:13 ../ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Godkendelsesfejl" - -#: ../ajax/changepassword.php:19 -msgid "You have to enter the old and the new password!" -msgstr "Du skal indtaste din gamle og nye adganskode" - -#: ../ajax/changepassword.php:25 -msgid "Your old password is wrong!" -msgstr "Din gamle adgangskode er forkert!" +#: templates/users.php:11 +msgid "Name" +msgstr "" -#: ../ajax/changepassword.php:31 -msgid "Password changed" -msgstr "Adgangskoden er ændret" +#: templates/users.php:12 +msgid "Password" +msgstr "" -#: ../ajax/changepassword.php:34 -msgid "Unable to change password" -msgstr "Kan ikke ændre din adgangskode" +#: templates/users.php:13 templates/users.php:28 +msgid "Groups" +msgstr "" -#: ../ajax/setlanguage.php:21 -msgid "Language changed" -msgstr "Sprog ændret" +#: templates/users.php:18 +msgid "Create" +msgstr "" -#: ../ajax/setlanguage.php:23 -msgid "Invalid request" -msgstr "Invalid forespørgsel" +#: templates/users.php:36 +msgid "Remove" +msgstr "" diff --git a/l10n/de/admin.po b/l10n/de/admin.po deleted file mode 100644 index 4495f3994e1..00000000000 --- a/l10n/de/admin.po +++ /dev/null @@ -1,93 +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. -# -# Jan-Christoph Borchardt , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-28 00:09+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../templates/app.php:22 -msgid "read more" -msgstr "mehr …" - -#: ../templates/app.php:24 -msgid "INSTALL" -msgstr "Installieren" - -#: ../templates/app_noconn.php:6 ../templates/apps.php:6 -msgid "Apps Repository" -msgstr "Anwendungen" - -#: ../templates/app_noconn.php:7 -msgid "Cannot connect to apps repository" -msgstr "Verbindung fehlgeschlagen" - -#: ../templates/apps.php:13 ../templates/users.php:6 ../templates/users.php:15 -#: ../templates/users.php:51 -msgid "Name" -msgstr "Name" - -#: ../templates/apps.php:14 -msgid "Modified" -msgstr "Änderungsdatum" - -#: ../templates/system.php:6 -msgid "Administration" -msgstr "Verwaltung" - -#: ../templates/system.php:7 -msgid "System Settings" -msgstr "Systemeinstellungen" - -#: ../templates/users.php:2 -msgid "Users" -msgstr "Nutzer" - -#: ../templates/users.php:7 ../templates/users.php:47 -msgid "Groups" -msgstr "Gruppen" - -#: ../templates/users.php:16 -msgid "Password" -msgstr "Passwort" - -#: ../templates/users.php:25 -msgid "Create" -msgstr "Erstellen" - -#: ../templates/users.php:37 ../templates/users.php:69 -msgid "remove" -msgstr "entfernen" - -#: ../templates/users.php:59 -msgid "Create group" -msgstr "Gruppe erstellen" - -#: ../templates/users.php:95 -msgid "Force new password:" -msgstr "Neues Passwort:" - -#: ../templates/users.php:97 -msgid "Set" -msgstr "OK" - -#: ../templates/users.php:103 -msgid "Do you really want to delete user" -msgstr "Möchtest du den Nutzer wirklich entfernen?" - -#: ../templates/users.php:110 -msgid "Do you really want to delete group" -msgstr "Möchtest du die Gruppe wirklich entfernen?" - - diff --git a/l10n/de/core.po b/l10n/de/core.po index 20aa6c30ecc..3561e8e4251 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -2,13 +2,14 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# , 2011. # Jan-Christoph Borchardt , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-28 12:04+0000\n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:35+0000\n" "Last-Translator: JanCBorchardt \n" "Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" "MIME-Version: 1.0\n" @@ -17,112 +18,93 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../templates/404.php:15 -msgid "Error 404, Cloud not found" -msgstr "Cloud konnte nicht gefunden werden." - -#: ../templates/installation.php:6 -msgid "ownCloud is your personal web storage." -msgstr "ownCloud ist dein persönlicher Online-Speicher." +#: templates/login.php:4 +msgid "Login failed!" +msgstr "Anmeldung fehlgeschlagen!" -#: ../templates/installation.php:7 -msgid "Finish the setup by following the steps below." -msgstr "Die Installation ist fast abgeschlossen." +#: templates/login.php:9 templates/login.php:13 +msgid "remember" +msgstr "merken" -#: ../templates/installation.php:26 -msgid "Create an admin account." -msgstr "Verwalter-Konto erstellen" +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Admin-Konto anlegen" -#: ../templates/installation.php:27 +#: templates/installation.php:21 msgid "Username" msgstr "Nutzername" -#: ../templates/installation.php:28 +#: templates/installation.php:22 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 "Datenverzeichnis:" - -#: ../templates/installation.php:39 -msgid "Configure the database." +#: templates/installation.php:27 +msgid "Configure the database" msgstr "Datenbank einrichten" -#: ../templates/installation.php:43 -msgid "SQLite will be used for the database. You have nothing to do." -msgstr "SQLite wird als Datenbank genutzt." +#: templates/installation.php:32 templates/installation.php:43 +#: templates/installation.php:53 +msgid "will be used" +msgstr "wird genutzt" -#: ../templates/installation.php:46 -msgid "SQLite" -msgstr "SQLite" +#: templates/installation.php:64 +msgid "Database user" +msgstr "Datenbanknutzer" -#: ../templates/installation.php:53 -msgid "MySQL will be used for the database." -msgstr "MySQL wird als Datenbank genutzt." +#: templates/installation.php:65 +msgid "Database password" +msgstr "Datenbankpasswort" -#: ../templates/installation.php:59 -msgid "MySQL username:" -msgstr "MySQL-Nutzername:" +#: templates/installation.php:66 +msgid "Database name" +msgstr "Datenbankname" -#: ../templates/installation.php:60 -msgid "MySQL password:" -msgstr "MySQL-Passwort:" +#: templates/installation.php:74 +msgid "Advanced" +msgstr "Erweitert" -#: ../templates/installation.php:61 -msgid "Database name:" -msgstr "Datenbankname:" +#: templates/installation.php:77 +msgid "Host" +msgstr "Host" -#: ../templates/installation.php:62 -msgid "Host:" -msgstr "Host:" +#: templates/installation.php:78 +msgid "Table prefix" +msgstr "Tabellenpräfix" -#: ../templates/installation.php:63 -msgid "Table prefix:" -msgstr "Tabellenpräfix:" +#: templates/installation.php:80 +msgid "Data folder" +msgstr "Datenverzeichnis" -#: ../templates/installation.php:69 +#: templates/installation.php:83 msgid "Finish setup" msgstr "Installation abschließen" -#: ../templates/layout.guest.php:33 -msgid "" -"ownCloud is a personal cloud which runs" -" on your own server.

" -msgstr "" -"ownCloud ist ein privater Online-" -"Speicher für deinen eigenen Server.

" - -#: ../templates/login.php:6 -msgid "Login failed!" -msgstr "Anmeldung fehlgeschlagen!" +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Cloud nicht verfügbar" -#: ../templates/login.php:11 ../templates/login.php:15 -msgid "Remember login" -msgstr "Anmeldung merken" +#: templates/layout.guest.php:38 +msgid "is a personal cloud which runs on your own server" +msgstr "ist ein persönlicher Online-Speicher für deinen eigenen Server" -#: ../templates/logout.php:1 -msgid "You are logged out." -msgstr "Erfolgreich abgemeldet." - -#: ../templates/part.pagenavi.php:6 +#: templates/part.pagenavi.php:6 msgid "prev" msgstr "Zurück" -#: ../templates/part.pagenavi.php:26 +#: templates/part.pagenavi.php:26 msgid "next" msgstr "Weiter" -#: ../templates/part.searchbox.php:3 -msgid "Search" -msgstr "Suchen" +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Erfolgreich abgemeldet." + +#: templates/layout.user.php:36 +msgid "Log out" +msgstr "Abmelden" + +#: templates/layout.user.php:56 +msgid "Settings" +msgstr "Einstellungen" diff --git a/l10n/de/help.po b/l10n/de/help.po deleted file mode 100644 index 2b9f1eaa91e..00000000000 --- a/l10n/de/help.po +++ /dev/null @@ -1,27 +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. -# -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:15+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../templates/index.php:2 -msgid "Questions and Answers" -msgstr "Fragen & Antworten" - -#: ../templates/index.php:24 -msgid "ASK A QUESTION" -msgstr "Stell eine Frage" - - diff --git a/l10n/de/log.po b/l10n/de/log.po deleted file mode 100644 index c249e412a7b..00000000000 --- a/l10n/de/log.po +++ /dev/null @@ -1,68 +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. -# -# Jakob Sack , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:15+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\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/de/settings.po b/l10n/de/settings.po index e1ecc38c991..874363d52f7 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -2,12 +2,13 @@ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # +# Jan-Christoph Borchardt , 2011. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:15+0000\n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:37+0000\n" "Last-Translator: JanCBorchardt \n" "Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" "MIME-Version: 1.0\n" @@ -16,72 +17,96 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../templates/index.php:3 +#: ajax/openid.php:13 ajax/setlanguage.php:13 +msgid "Authentication error" +msgstr "Berechtigungsfehler" + +#: ajax/openid.php:21 +msgid "OpenID Changed" +msgstr "OpenID geändert" + +#: ajax/openid.php:23 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "Ungültige Anfrage" + +#: ajax/setlanguage.php:21 +msgid "Language changed" +msgstr "Sprache geändert" + +#: templates/help.php:21 +msgid "Ask a question" +msgstr "Stell eine Frage" + +#: templates/apps.php:12 +msgid "Select an App" +msgstr "Wähle eine Anwendung aus" + +#: templates/apps.php:14 +msgid "-licensed" +msgstr "-lizenziert" + +#: templates/apps.php:14 +msgid "by" +msgstr "von" + +#: templates/personal.php:3 msgid "Account information" msgstr "Konto-Information" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "You're currently using" msgstr "Du benutzt gerade" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "of your" msgstr "von deinem" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "space" msgstr "Speicherplatz" -#: ../templates/index.php:11 +#: templates/personal.php:11 templates/personal.php:17 msgid "Change Password" msgstr "Passwort ändern" -#: ../templates/index.php:12 +#: templates/personal.php:12 msgid "Your password got changed" -msgstr "Dein Passwort wurde geändert." +msgstr "Dein Passwort wurde geändert" -#: ../templates/index.php:15 -msgid "Old password:" -msgstr "Aktuelles Passwort:" +#: templates/personal.php:14 +msgid "Old password" +msgstr "Altes Passwort" -#: ../templates/index.php:19 +#: templates/personal.php:15 msgid "New password" -msgstr "Neues Passwort:" +msgstr "Neues Passwort" -#: ../templates/index.php:24 -msgid "Show new password" -msgstr "Neues Passwort anzeigen" +#: templates/personal.php:16 +msgid "show" +msgstr "zeigen" -#: ../templates/index.php:34 +#: templates/personal.php:23 msgid "Language" msgstr "Sprache" -#: ../ajax/changepassword.php:13 ../ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Berechtigungsfehler" - -#: ../ajax/changepassword.php:19 -msgid "You have to enter the old and the new password!" -msgstr "Du musst das aktuelle und ein neues Passwort angeben!" +#: templates/users.php:11 +msgid "Name" +msgstr "Name" -#: ../ajax/changepassword.php:25 -msgid "Your old password is wrong!" -msgstr "Du hast dein aktuelles Passwort falsch eingegeben!" +#: templates/users.php:12 +msgid "Password" +msgstr "Passwort" -#: ../ajax/changepassword.php:31 -msgid "Password changed" -msgstr "Passwort geändert" +#: templates/users.php:13 templates/users.php:28 +msgid "Groups" +msgstr "Gruppen" -#: ../ajax/changepassword.php:34 -msgid "Unable to change password" -msgstr "Passwort konnte nicht geändert werden" +#: templates/users.php:18 +msgid "Create" +msgstr "Anlegen" -#: ../ajax/setlanguage.php:21 -msgid "Language changed" -msgstr "Sprache geändert" - -#: ../ajax/setlanguage.php:23 -msgid "Invalid request" -msgstr "Ungültige Anfrage" +#: templates/users.php:36 +msgid "Remove" +msgstr "Entfernen" diff --git a/l10n/es/admin.po b/l10n/es/admin.po deleted file mode 100644 index af814907b97..00000000000 --- a/l10n/es/admin.po +++ /dev/null @@ -1,93 +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. -# -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-30 21:03+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../templates/app.php:22 -msgid "read more" -msgstr "leer más" - -#: ../templates/app.php:24 -msgid "INSTALL" -msgstr "Instalar" - -#: ../templates/app_noconn.php:6 ../templates/apps.php:6 -msgid "Apps Repository" -msgstr "Repositorio de aplicaciones " - -#: ../templates/app_noconn.php:7 -msgid "Cannot connect to apps repository" -msgstr "No se pudo conectar con el repositorio de aplicaciones" - -#: ../templates/apps.php:13 ../templates/users.php:6 ../templates/users.php:15 -#: ../templates/users.php:51 -msgid "Name" -msgstr "Nombre" - -#: ../templates/apps.php:14 -msgid "Modified" -msgstr "Modificado" - -#: ../templates/system.php:6 -msgid "Administration" -msgstr "Administración" - -#: ../templates/system.php:7 -msgid "System Settings" -msgstr "Ajustes del Sistema" - -#: ../templates/users.php:2 -msgid "Users" -msgstr "Usuarios" - -#: ../templates/users.php:7 ../templates/users.php:47 -msgid "Groups" -msgstr "Grupos" - -#: ../templates/users.php:16 -msgid "Password" -msgstr "Contraseña" - -#: ../templates/users.php:25 -msgid "Create" -msgstr "Crear" - -#: ../templates/users.php:37 ../templates/users.php:69 -msgid "remove" -msgstr "Eliminar" - -#: ../templates/users.php:59 -msgid "Create group" -msgstr "Crear grupo" - -#: ../templates/users.php:95 -msgid "Force new password:" -msgstr "Forzar una nueva contraseña" - -#: ../templates/users.php:97 -msgid "Set" -msgstr "Aplicar" - -#: ../templates/users.php:103 -msgid "Do you really want to delete user" -msgstr "¿Seguro que quieres eliminar este usuario?" - -#: ../templates/users.php:110 -msgid "Do you really want to delete group" -msgstr "¿Seguro que quieres eliminar este grupo?" - - diff --git a/l10n/es/core.po b/l10n/es/core.po index b8a5ace312f..25f2b5b01a3 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -7,123 +7,103 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-30 21:03+0000\n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:33+0000\n" "Last-Translator: JanCBorchardt \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/team/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../templates/404.php:15 -msgid "Error 404, Cloud not found" -msgstr "Error 404, La pagina no se pudo encontrar" - -#: ../templates/installation.php:6 -msgid "ownCloud is your personal web storage." -msgstr "ownCloud es tu web de almacenamiento personal." +#: templates/login.php:4 +msgid "Login failed!" +msgstr "¡No se pudo iniciar sesión!" -#: ../templates/installation.php:7 -msgid "Finish the setup by following the steps below." -msgstr "Completa la instalación mediante los siguientes pasos." +#: templates/login.php:9 templates/login.php:13 +msgid "remember" +msgstr "" -#: ../templates/installation.php:26 -msgid "Create an admin account." -msgstr "Crear una cuenta de administrador." +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "" -#: ../templates/installation.php:27 +#: templates/installation.php:21 msgid "Username" msgstr "Nombre de usuario" -#: ../templates/installation.php:28 +#: templates/installation.php:22 msgid "Password" msgstr "Contraseña" -#: ../templates/installation.php:31 -msgid "Advanced" -msgstr "Avanzado" - -#: ../templates/installation.php:34 -msgid "Set where to store the data." -msgstr "Selecciona donde quieres almacenar los datos." - -#: ../templates/installation.php:35 -msgid "Data directory:" -msgstr "Directorio de almacenamiento:" - -#: ../templates/installation.php:39 -msgid "Configure the database." -msgstr "Configurar la base de datos." +#: templates/installation.php:27 +msgid "Configure the database" +msgstr "" -#: ../templates/installation.php:43 -msgid "SQLite will be used for the database. You have nothing to do." +#: templates/installation.php:32 templates/installation.php:43 +#: templates/installation.php:53 +msgid "will be used" msgstr "" -"Se utilizará SQLite para la base de datos. No necesitas configurar nada más." -#: ../templates/installation.php:46 -msgid "SQLite" -msgstr "SQLite" +#: templates/installation.php:64 +msgid "Database user" +msgstr "" -#: ../templates/installation.php:53 -msgid "MySQL will be used for the database." -msgstr "Se utilizará MySQL para la base de datos." +#: templates/installation.php:65 +msgid "Database password" +msgstr "" -#: ../templates/installation.php:59 -msgid "MySQL username:" -msgstr "Nombre de usuario de MySQL:" +#: templates/installation.php:66 +msgid "Database name" +msgstr "" -#: ../templates/installation.php:60 -msgid "MySQL password:" -msgstr "Contraseña de MySQL:" +#: templates/installation.php:74 +msgid "Advanced" +msgstr "Avanzado" -#: ../templates/installation.php:61 -msgid "Database name:" -msgstr "Nombre de la base de datos:" +#: templates/installation.php:77 +msgid "Host" +msgstr "" -#: ../templates/installation.php:62 -msgid "Host:" -msgstr "Host:" +#: templates/installation.php:78 +msgid "Table prefix" +msgstr "" -#: ../templates/installation.php:63 -msgid "Table prefix:" -msgstr "Prefijo de la tabla:" +#: templates/installation.php:80 +msgid "Data folder" +msgstr "" -#: ../templates/installation.php:69 +#: templates/installation.php:83 msgid "Finish setup" msgstr "Completar la instalación" -#: ../templates/layout.guest.php:33 -msgid "" -"ownCloud is a personal cloud which runs" -" on your own server.

" +#: templates/404.php:12 +msgid "Cloud not found" msgstr "" -"ownCloud es tu nube personal que corre " -"en tu propio servidor.

" - -#: ../templates/login.php:6 -msgid "Login failed!" -msgstr "¡No se pudo iniciar sesión!" -#: ../templates/login.php:11 ../templates/login.php:15 -msgid "Remember login" -msgstr "Recordarme" - -#: ../templates/logout.php:1 -msgid "You are logged out." -msgstr "Has cerrado sesión." +#: templates/layout.guest.php:38 +msgid "is a personal cloud which runs on your own server" +msgstr "" -#: ../templates/part.pagenavi.php:6 +#: templates/part.pagenavi.php:6 msgid "prev" msgstr "anterior" -#: ../templates/part.pagenavi.php:26 +#: templates/part.pagenavi.php:26 msgid "next" msgstr "siguiente" -#: ../templates/part.searchbox.php:3 -msgid "Search" -msgstr "Buscar" +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Has cerrado sesión." + +#: templates/layout.user.php:36 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:56 +msgid "Settings" +msgstr "" diff --git a/l10n/es/help.po b/l10n/es/help.po deleted file mode 100644 index 96eda9c3974..00000000000 --- a/l10n/es/help.po +++ /dev/null @@ -1,28 +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. -# -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-30 21:03+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../templates/index.php:2 -msgid "Questions and Answers" -msgstr "Preguntas y Respuestas" - -#: ../templates/index.php:24 -msgid "ASK A QUESTION" -msgstr "Haz una pregunta" - - diff --git a/l10n/es/log.po b/l10n/es/log.po deleted file mode 100644 index ca17c9328f9..00000000000 --- a/l10n/es/log.po +++ /dev/null @@ -1,68 +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. -# -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-30 21:03+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../templates/index.php:4 -msgid "Filter:" -msgstr "Filtro:" - -#: ../templates/index.php:7 -msgid "Logins" -msgstr "Inicios de sesión" - -#: ../templates/index.php:8 -msgid "Logouts" -msgstr "Cierres de sesión" - -#: ../templates/index.php:9 -msgid "Downloads" -msgstr "Descargas" - -#: ../templates/index.php:10 -msgid "Uploads" -msgstr "Subidas" - -#: ../templates/index.php:11 -msgid "Creations" -msgstr "Creaciones" - -#: ../templates/index.php:12 -msgid "Deletions" -msgstr "Eliminaciones" - -#: ../templates/index.php:15 -msgid "Show:" -msgstr "Mostrar" - -#: ../templates/index.php:16 -msgid "entries per page." -msgstr "Entradas por página." - -#: ../templates/index.php:26 -msgid "What" -msgstr "Qué" - -#: ../templates/index.php:27 -msgid "When" -msgstr "Cuándo" - -#: ../templates/index.php:45 -msgid "Clear log entries before" -msgstr "Eliminar los registros anteriores a" - - diff --git a/l10n/es/settings.po b/l10n/es/settings.po index d4c9878a745..da601175c59 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -7,82 +7,106 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-30 21:03+0000\n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" "Last-Translator: JanCBorchardt \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/team/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../templates/index.php:3 +#: ajax/openid.php:13 ajax/setlanguage.php:13 +msgid "Authentication error" +msgstr "Error de autentificación" + +#: ajax/openid.php:21 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:23 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "Solicitud no válida" + +#: ajax/setlanguage.php:21 +msgid "Language changed" +msgstr "Idioma cambiado" + +#: templates/help.php:21 +msgid "Ask a question" +msgstr "" + +#: templates/apps.php:12 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:14 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:14 +msgid "by" +msgstr "" + +#: templates/personal.php:3 msgid "Account information" msgstr "Información de la cuenta" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "You're currently using" msgstr "Estás utilizando" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "of your" msgstr "de tus" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "space" msgstr "de espacio total" -#: ../templates/index.php:11 +#: templates/personal.php:11 templates/personal.php:17 msgid "Change Password" msgstr "Cambiar contraseña" -#: ../templates/index.php:12 +#: templates/personal.php:12 msgid "Your password got changed" msgstr "Tu contraseña ha sido cambiada" -#: ../templates/index.php:15 -msgid "Old password:" -msgstr "Antigua contraseña:" +#: templates/personal.php:14 +msgid "Old password" +msgstr "" -#: ../templates/index.php:19 +#: templates/personal.php:15 msgid "New password" msgstr "Nueva contraseña:" -#: ../templates/index.php:24 -msgid "Show new password" -msgstr "Mostrar nueva contraseña" +#: templates/personal.php:16 +msgid "show" +msgstr "" -#: ../templates/index.php:34 +#: templates/personal.php:23 msgid "Language" msgstr "Idioma" -#: ../ajax/changepassword.php:13 ../ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Error de autentificación" - -#: ../ajax/changepassword.php:19 -msgid "You have to enter the old and the new password!" -msgstr "¡Tienes que introducir la contraseña antigua y la contraseña nueva!" - -#: ../ajax/changepassword.php:25 -msgid "Your old password is wrong!" -msgstr "¡Tu contraseña antigua es incorrecta!" +#: templates/users.php:11 +msgid "Name" +msgstr "" -#: ../ajax/changepassword.php:31 -msgid "Password changed" -msgstr "Contraseña cambiada" +#: templates/users.php:12 +msgid "Password" +msgstr "" -#: ../ajax/changepassword.php:34 -msgid "Unable to change password" -msgstr "No se puede cambiar la contraseña" +#: templates/users.php:13 templates/users.php:28 +msgid "Groups" +msgstr "" -#: ../ajax/setlanguage.php:21 -msgid "Language changed" -msgstr "Idioma cambiado" +#: templates/users.php:18 +msgid "Create" +msgstr "" -#: ../ajax/setlanguage.php:23 -msgid "Invalid request" -msgstr "Solicitud no válida" +#: templates/users.php:36 +msgid "Remove" +msgstr "" diff --git a/l10n/fr/admin.po b/l10n/fr/admin.po deleted file mode 100644 index b1dad1da675..00000000000 --- a/l10n/fr/admin.po +++ /dev/null @@ -1,93 +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. -# -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-30 07:29+0000\n" -"Last-Translator: rom1dep \n" -"Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ../templates/app.php:22 -msgid "read more" -msgstr "en lire plus" - -#: ../templates/app.php:24 -msgid "INSTALL" -msgstr "INSTALLATION" - -#: ../templates/app_noconn.php:6 ../templates/apps.php:6 -msgid "Apps Repository" -msgstr "Répertoire d'applications" - -#: ../templates/app_noconn.php:7 -msgid "Cannot connect to apps repository" -msgstr "Impossible de se connecter au répertoire d'applications" - -#: ../templates/apps.php:13 ../templates/users.php:6 ../templates/users.php:15 -#: ../templates/users.php:51 -msgid "Name" -msgstr "Nom" - -#: ../templates/apps.php:14 -msgid "Modified" -msgstr "Modifié le" - -#: ../templates/system.php:6 -msgid "Administration" -msgstr "Administration" - -#: ../templates/system.php:7 -msgid "System Settings" -msgstr "Préférences Système" - -#: ../templates/users.php:2 -msgid "Users" -msgstr "Utilisateurs" - -#: ../templates/users.php:7 ../templates/users.php:47 -msgid "Groups" -msgstr "Groupes" - -#: ../templates/users.php:16 -msgid "Password" -msgstr "Mot de passe" - -#: ../templates/users.php:25 -msgid "Create" -msgstr "Créer" - -#: ../templates/users.php:37 ../templates/users.php:69 -msgid "remove" -msgstr "retirer" - -#: ../templates/users.php:59 -msgid "Create group" -msgstr "Créer un groupe" - -#: ../templates/users.php:95 -msgid "Force new password:" -msgstr "Forcer un nouveau mot de passe :" - -#: ../templates/users.php:97 -msgid "Set" -msgstr "Appliquer" - -#: ../templates/users.php:103 -msgid "Do you really want to delete user" -msgstr "Voulez-vous réellement supprimer cet utilisateur" - -#: ../templates/users.php:110 -msgid "Do you really want to delete group" -msgstr "Voulez-vous réellement supprimer ce groupe" - - diff --git a/l10n/fr/core.po b/l10n/fr/core.po index a9e8831d2ef..db7159b3a13 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-30 20:10+0000\n" -"Last-Translator: rom1dep \n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:33+0000\n" +"Last-Translator: JanCBorchardt \n" "Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,114 +17,93 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ../templates/404.php:15 -msgid "Error 404, Cloud not found" -msgstr "Erreur 404, la page demandée n'existe pas" - -#: ../templates/installation.php:6 -msgid "ownCloud is your personal web storage." -msgstr "ownCloud est votre espace de stockage web personnel." +#: templates/login.php:4 +msgid "Login failed!" +msgstr "Échec de la connexion !" -#: ../templates/installation.php:7 -msgid "Finish the setup by following the steps below." -msgstr "Terminez l'installation en suivant les étapes ci-dessous." +#: templates/login.php:9 templates/login.php:13 +msgid "remember" +msgstr "se souvenir de moi" -#: ../templates/installation.php:26 -msgid "Create an admin account." -msgstr "Veuillez créer un compte administrateur." +#: templates/installation.php:20 +msgid "Create an admin account" +msgstr "Créer un compte administrateur" -#: ../templates/installation.php:27 +#: templates/installation.php:21 msgid "Username" msgstr "Nom d'utilisateur" -#: ../templates/installation.php:28 +#: templates/installation.php:22 msgid "Password" msgstr "Mot de passe" -#: ../templates/installation.php:31 -msgid "Advanced" -msgstr "Avancé" - -#: ../templates/installation.php:34 -msgid "Set where to store the data." -msgstr "Sélectionnez où sauvegarder les données" - -#: ../templates/installation.php:35 -msgid "Data directory:" -msgstr "Répertoire de données" +#: templates/installation.php:27 +msgid "Configure the database" +msgstr "Configurer la base de données" -#: ../templates/installation.php:39 -msgid "Configure the database." -msgstr "Configurez la base de données." - -#: ../templates/installation.php:43 -msgid "SQLite will be used for the database. You have nothing to do." +#: templates/installation.php:32 templates/installation.php:43 +#: templates/installation.php:53 +msgid "will be used" msgstr "" -"SQLite sera utilisé comme moteur pour la base de données. Vous n'avez rien " -"de plus à faire." -#: ../templates/installation.php:46 -msgid "SQLite" -msgstr "SQLite" +#: templates/installation.php:64 +msgid "Database user" +msgstr "Utilisateur de la base de données" -#: ../templates/installation.php:53 -msgid "MySQL will be used for the database." -msgstr "MySQL sera utilisé comme moteur pour la base de données." +#: templates/installation.php:65 +msgid "Database password" +msgstr "Mot de passe de la base de données" -#: ../templates/installation.php:59 -msgid "MySQL username:" -msgstr "Nom d'utilisateur MySQL :" +#: templates/installation.php:66 +msgid "Database name" +msgstr "Nom de la base de données" -#: ../templates/installation.php:60 -msgid "MySQL password:" -msgstr "Mot de passe MySQL :" +#: templates/installation.php:74 +msgid "Advanced" +msgstr "Avancé" -#: ../templates/installation.php:61 -msgid "Database name:" -msgstr "Nom de la base de données :" +#: templates/installation.php:77 +msgid "Host" +msgstr "Hôte" -#: ../templates/installation.php:62 -msgid "Host:" -msgstr "Hôte :" +#: templates/installation.php:78 +msgid "Table prefix" +msgstr "Préfixe des tables" -#: ../templates/installation.php:63 -msgid "Table prefix:" -msgstr "Préfixe de table :" +#: templates/installation.php:80 +msgid "Data folder" +msgstr "Répertoire des données" -#: ../templates/installation.php:69 +#: templates/installation.php:83 msgid "Finish setup" msgstr "Terminer l'installation" -#: ../templates/layout.guest.php:33 -msgid "" -"ownCloud is a personal cloud which runs" -" on your own server.

" -msgstr "" -"ownCloud est votre solution cloud " -"personnelle propulsée par votre propre serveur.

" +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Introuvable" -#: ../templates/login.php:6 -msgid "Login failed!" -msgstr "Échec de la connexion !" - -#: ../templates/login.php:11 ../templates/login.php:15 -msgid "Remember login" -msgstr "Se souvenir de moi" - -#: ../templates/logout.php:1 -msgid "You are logged out." -msgstr "Vous êtes désormais déconnecté." +#: templates/layout.guest.php:38 +msgid "is a personal cloud which runs on your own server" +msgstr "" -#: ../templates/part.pagenavi.php:6 +#: templates/part.pagenavi.php:6 msgid "prev" msgstr "précédent" -#: ../templates/part.pagenavi.php:26 +#: templates/part.pagenavi.php:26 msgid "next" msgstr "suivant" -#: ../templates/part.searchbox.php:3 -msgid "Search" -msgstr "Rechercher" +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Vous êtes désormais déconnecté." + +#: templates/layout.user.php:36 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:56 +msgid "Settings" +msgstr "" diff --git a/l10n/fr/help.po b/l10n/fr/help.po deleted file mode 100644 index d8c869024b9..00000000000 --- a/l10n/fr/help.po +++ /dev/null @@ -1,28 +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. -# -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-30 07:17+0000\n" -"Last-Translator: rom1dep \n" -"Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ../templates/index.php:2 -msgid "Questions and Answers" -msgstr "Questions / Réponses" - -#: ../templates/index.php:24 -msgid "ASK A QUESTION" -msgstr "Poser une question" - - diff --git a/l10n/fr/log.po b/l10n/fr/log.po deleted file mode 100644 index 4e59e55d392..00000000000 --- a/l10n/fr/log.po +++ /dev/null @@ -1,68 +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. -# -# , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-30 07:16+0000\n" -"Last-Translator: rom1dep \n" -"Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: ../templates/index.php:4 -msgid "Filter:" -msgstr "Filtre :" - -#: ../templates/index.php:7 -msgid "Logins" -msgstr "Connexions" - -#: ../templates/index.php:8 -msgid "Logouts" -msgstr "Déconnexions" - -#: ../templates/index.php:9 -msgid "Downloads" -msgstr "Téléchargements" - -#: ../templates/index.php:10 -msgid "Uploads" -msgstr "Téléversements" - -#: ../templates/index.php:11 -msgid "Creations" -msgstr "Créations" - -#: ../templates/index.php:12 -msgid "Deletions" -msgstr "Suppressions" - -#: ../templates/index.php:15 -msgid "Show:" -msgstr "Afficher :" - -#: ../templates/index.php:16 -msgid "entries per page." -msgstr "entrées par page." - -#: ../templates/index.php:26 -msgid "What" -msgstr "Quoi" - -#: ../templates/index.php:27 -msgid "When" -msgstr "Quand" - -#: ../templates/index.php:45 -msgid "Clear log entries before" -msgstr "Effacer les entrées du journal au préalable" - - diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 3a8855b981e..4a8ca8fad51 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-30 07:10+0000\n" -"Last-Translator: rom1dep \n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" +"Last-Translator: JanCBorchardt \n" "Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,72 +17,96 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" -#: ../templates/index.php:3 +#: ajax/openid.php:13 ajax/setlanguage.php:13 +msgid "Authentication error" +msgstr "Erreur d'authentification" + +#: ajax/openid.php:21 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:23 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "Requète invalide" + +#: ajax/setlanguage.php:21 +msgid "Language changed" +msgstr "Langue changée avec succès" + +#: templates/help.php:21 +msgid "Ask a question" +msgstr "" + +#: templates/apps.php:12 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:14 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:14 +msgid "by" +msgstr "" + +#: templates/personal.php:3 msgid "Account information" msgstr "Informations sur le compte" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "You're currently using" msgstr "Vous utilisez actuellement" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "of your" -msgstr "de votre" +msgstr "de votre espace de stockage de" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "space" -msgstr "espace de stockage" +msgstr " " -#: ../templates/index.php:11 +#: templates/personal.php:11 templates/personal.php:17 msgid "Change Password" msgstr "Changer votre mot de passe" -#: ../templates/index.php:12 +#: templates/personal.php:12 msgid "Your password got changed" msgstr "Votre mot de passe a été changé" -#: ../templates/index.php:15 -msgid "Old password:" -msgstr "Ancien mot de passe :" +#: templates/personal.php:14 +msgid "Old password" +msgstr "Ancien mot de passe" -#: ../templates/index.php:19 +#: templates/personal.php:15 msgid "New password" msgstr "Nouveau mot de passe :" -#: ../templates/index.php:24 -msgid "Show new password" -msgstr "Afficher votre nouveau mot de passe" +#: templates/personal.php:16 +msgid "show" +msgstr "Afficher" -#: ../templates/index.php:34 +#: templates/personal.php:23 msgid "Language" msgstr "Langue" -#: ../ajax/changepassword.php:13 ../ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Erreur d'authentification" - -#: ../ajax/changepassword.php:19 -msgid "You have to enter the old and the new password!" -msgstr "Vous devez saisir l'ancien et le nouveau mot de passe !" - -#: ../ajax/changepassword.php:25 -msgid "Your old password is wrong!" -msgstr "Votre ancien mot de passe est erroné !" +#: templates/users.php:11 +msgid "Name" +msgstr "" -#: ../ajax/changepassword.php:31 -msgid "Password changed" -msgstr "Mot de passe changé avec succès" +#: templates/users.php:12 +msgid "Password" +msgstr "" -#: ../ajax/changepassword.php:34 -msgid "Unable to change password" -msgstr "Impossible de changer le mot de passe" +#: templates/users.php:13 templates/users.php:28 +msgid "Groups" +msgstr "" -#: ../ajax/setlanguage.php:21 -msgid "Language changed" -msgstr "Langue changée avec succès" +#: templates/users.php:18 +msgid "Create" +msgstr "" -#: ../ajax/setlanguage.php:23 -msgid "Invalid request" -msgstr "Requète invalide" +#: templates/users.php:36 +msgid "Remove" +msgstr "" diff --git a/l10n/l10n.pl b/l10n/l10n.pl index 736a7bc0435..fb1b522c255 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -74,9 +74,6 @@ die( "Program must be executed in a l10n-folder called 'l10n'" ) unless $wheream my @dirs = crawlPrograms( $place, 1 ); # Languages -rmtree( 'templates' ); -mkdir( 'templates' ) unless -d 'templates'; - my @languages = (); opendir( DIR, '.' ); my @files = readdir( DIR ); @@ -86,6 +83,8 @@ foreach my $i ( @files ){ } if( $task eq 'read' ){ + rmtree( 'templates' ); + mkdir( 'templates' ) unless -d 'templates'; print "Mode: reading\n"; foreach my $dir ( @dirs ){ my @temp = split( /\//, $dir ); diff --git a/l10n/nl/admin.po b/l10n/nl/admin.po deleted file mode 100644 index 6c59b0b864e..00000000000 --- a/l10n/nl/admin.po +++ /dev/null @@ -1,94 +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. -# -# Robin Appelman , 2011. -# Jan-Christoph Borchardt , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-28 00:09+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../templates/app.php:22 -msgid "read more" -msgstr "Meer informatie" - -#: ../templates/app.php:24 -msgid "INSTALL" -msgstr "Installeer" - -#: ../templates/app_noconn.php:6 ../templates/apps.php:6 -msgid "Apps Repository" -msgstr "Applicatiedatabase" - -#: ../templates/app_noconn.php:7 -msgid "Cannot connect to apps repository" -msgstr "Kan geen verbinding maken met de applicatiedatabase" - -#: ../templates/apps.php:13 ../templates/users.php:6 ../templates/users.php:15 -#: ../templates/users.php:51 -msgid "Name" -msgstr "Naam" - -#: ../templates/apps.php:14 -msgid "Modified" -msgstr "Laatst aangepast" - -#: ../templates/system.php:6 -msgid "Administration" -msgstr "Administratie" - -#: ../templates/system.php:7 -msgid "System Settings" -msgstr "Systeeminstellingen" - -#: ../templates/users.php:2 -msgid "Users" -msgstr "Gebruikers" - -#: ../templates/users.php:7 ../templates/users.php:47 -msgid "Groups" -msgstr "Groepen" - -#: ../templates/users.php:16 -msgid "Password" -msgstr "Wachtwoord" - -#: ../templates/users.php:25 -msgid "Create" -msgstr "" - -#: ../templates/users.php:37 ../templates/users.php:69 -msgid "remove" -msgstr "verwijder" - -#: ../templates/users.php:59 -msgid "Create group" -msgstr "Groep aanmaken" - -#: ../templates/users.php:95 -msgid "Force new password:" -msgstr "Forceer nieuw wachtwoord:" - -#: ../templates/users.php:97 -msgid "Set" -msgstr "Ok" - -#: ../templates/users.php:103 -msgid "Do you really want to delete user" -msgstr "Wilt u deze gebruiker verwijderen" - -#: ../templates/users.php:110 -msgid "Do you really want to delete group" -msgstr "Wilt u deze groep verwijderen" - - diff --git a/l10n/nl/core.po b/l10n/nl/core.po index dc797db0089..981f5cb9236 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-28 00:33+0000\n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:33+0000\n" "Last-Translator: JanCBorchardt \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -16,112 +16,93 @@ msgstr "" "Language: nl\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 "ownCloud is your personal web storage." -msgstr "" +#: templates/login.php:4 +msgid "Login failed!" +msgstr "Aanmelden mislukt." -#: ../templates/installation.php:7 -msgid "Finish the setup by following the steps below." +#: templates/login.php:9 templates/login.php:13 +msgid "remember" msgstr "" -#: ../templates/installation.php:26 -msgid "Create an admin account." +#: templates/installation.php:20 +msgid "Create an admin account" msgstr "" -#: ../templates/installation.php:27 +#: templates/installation.php:21 msgid "Username" msgstr "" -#: ../templates/installation.php:28 +#: templates/installation.php:22 msgid "Password" msgstr "" -#: ../templates/installation.php:31 -msgid "Advanced" -msgstr "Geavanceerd" +#: templates/installation.php:27 +msgid "Configure the database" +msgstr "" -#: ../templates/installation.php:34 -msgid "Set where to store the data." -msgstr "Bepaal de opslaglocatie." +#: templates/installation.php:32 templates/installation.php:43 +#: templates/installation.php:53 +msgid "will be used" +msgstr "" -#: ../templates/installation.php:35 -msgid "Data directory:" -msgstr "Gegevensmap:" +#: templates/installation.php:64 +msgid "Database user" +msgstr "" -#: ../templates/installation.php:39 -msgid "Configure the database." +#: templates/installation.php:65 +msgid "Database password" msgstr "" -#: ../templates/installation.php:43 -msgid "SQLite will be used for the database. You have nothing to do." +#: templates/installation.php:66 +msgid "Database name" msgstr "" -#: ../templates/installation.php:46 -msgid "SQLite" -msgstr "SQLite" +#: templates/installation.php:74 +msgid "Advanced" +msgstr "Geavanceerd" -#: ../templates/installation.php:53 -msgid "MySQL will be used for the database." +#: templates/installation.php:77 +msgid "Host" msgstr "" -#: ../templates/installation.php:59 -msgid "MySQL username:" +#: templates/installation.php:78 +msgid "Table prefix" msgstr "" -#: ../templates/installation.php:60 -msgid "MySQL password:" +#: templates/installation.php:80 +msgid "Data folder" msgstr "" -#: ../templates/installation.php:61 -msgid "Database name:" -msgstr "Databasenaam:" - -#: ../templates/installation.php:62 -msgid "Host:" -msgstr "Host:" - -#: ../templates/installation.php:63 -msgid "Table prefix:" -msgstr "Voorvoegsel voor tabelnamen:" - -#: ../templates/installation.php:69 +#: templates/installation.php:83 msgid "Finish setup" msgstr "Installatie afronden" -#: ../templates/layout.guest.php:33 -msgid "" -"ownCloud is a personal cloud which runs" -" on your own server.

" +#: templates/404.php:12 +msgid "Cloud not found" msgstr "" -"ownCloud is een persoonlijke cloud die " -"op uw eigen server draait.

" - -#: ../templates/login.php:6 -msgid "Login failed!" -msgstr "Aanmelden mislukt." -#: ../templates/login.php:11 ../templates/login.php:15 -msgid "Remember login" +#: templates/layout.guest.php:38 +msgid "is a personal cloud which runs on your own server" msgstr "" -#: ../templates/logout.php:1 -msgid "You are logged out." -msgstr "U bent afgemeld." - -#: ../templates/part.pagenavi.php:6 +#: templates/part.pagenavi.php:6 msgid "prev" msgstr "vorige" -#: ../templates/part.pagenavi.php:26 +#: templates/part.pagenavi.php:26 msgid "next" msgstr "volgende" -#: ../templates/part.searchbox.php:3 -msgid "Search" -msgstr "Zoeken" +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "U bent afgemeld." + +#: templates/layout.user.php:36 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:56 +msgid "Settings" +msgstr "" diff --git a/l10n/nl/help.po b/l10n/nl/help.po deleted file mode 100644 index 7d8108c804d..00000000000 --- a/l10n/nl/help.po +++ /dev/null @@ -1,28 +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. -# -# Robin Appelman , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:18+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../templates/index.php:2 -msgid "Questions and Answers" -msgstr "Vraag en Antwoord" - -#: ../templates/index.php:24 -msgid "ASK A QUESTION" -msgstr "Stel een vraag" - - diff --git a/l10n/nl/log.po b/l10n/nl/log.po deleted file mode 100644 index 8d5f86c5b37..00000000000 --- a/l10n/nl/log.po +++ /dev/null @@ -1,68 +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. -# -# Robin Appelman , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:18+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: ../templates/index.php:4 -msgid "Filter:" -msgstr "Filter:" - -#: ../templates/index.php:7 -msgid "Logins" -msgstr "Aanmeldingen" - -#: ../templates/index.php:8 -msgid "Logouts" -msgstr "Afmeldingen" - -#: ../templates/index.php:9 -msgid "Downloads" -msgstr "Downloads" - -#: ../templates/index.php:10 -msgid "Uploads" -msgstr "Uploads" - -#: ../templates/index.php:11 -msgid "Creations" -msgstr "Creaties" - -#: ../templates/index.php:12 -msgid "Deletions" -msgstr "Verwijderingen" - -#: ../templates/index.php:15 -msgid "Show:" -msgstr "Laat" - -#: ../templates/index.php:16 -msgid "entries per page." -msgstr "resulaten per pagina zien" - -#: ../templates/index.php:26 -msgid "What" -msgstr "Wat" - -#: ../templates/index.php:27 -msgid "When" -msgstr "Wanneer" - -#: ../templates/index.php:45 -msgid "Clear log entries before" -msgstr "Verwijder logboekitem ouder dan" - - diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 9a185102a2a..16e978bf09d 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:18+0000\n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" "Last-Translator: JanCBorchardt \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -16,72 +16,96 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" -#: ../templates/index.php:3 +#: ajax/openid.php:13 ajax/setlanguage.php:13 +msgid "Authentication error" +msgstr "Authenticatiefout." + +#: ajax/openid.php:21 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:23 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "Ongeldig verzoek" + +#: ajax/setlanguage.php:21 +msgid "Language changed" +msgstr "Taal aangepast" + +#: templates/help.php:21 +msgid "Ask a question" +msgstr "" + +#: templates/apps.php:12 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:14 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:14 +msgid "by" +msgstr "" + +#: templates/personal.php:3 msgid "Account information" msgstr "Gebruikersgegevens" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "You're currently using" msgstr "U gebruikt momenteel" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "of your" msgstr "van de" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "space" msgstr "beschikbare ruimte." -#: ../templates/index.php:11 +#: templates/personal.php:11 templates/personal.php:17 msgid "Change Password" msgstr "Wachtwoord aanpassen" -#: ../templates/index.php:12 +#: templates/personal.php:12 msgid "Your password got changed" msgstr "Uw wachtwoord is aangepast" -#: ../templates/index.php:15 -msgid "Old password:" -msgstr "Oud wachtwoord:" +#: templates/personal.php:14 +msgid "Old password" +msgstr "" -#: ../templates/index.php:19 +#: templates/personal.php:15 msgid "New password" msgstr "Nieuw wachtwoord" -#: ../templates/index.php:24 -msgid "Show new password" -msgstr "Toon nieuw wachtwoord" +#: templates/personal.php:16 +msgid "show" +msgstr "" -#: ../templates/index.php:34 +#: templates/personal.php:23 msgid "Language" msgstr "Taal" -#: ../ajax/changepassword.php:13 ../ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Authenticatiefout." - -#: ../ajax/changepassword.php:19 -msgid "You have to enter the old and the new password!" -msgstr "U moet het oude en nieuwe wachtwoord invullen." - -#: ../ajax/changepassword.php:25 -msgid "Your old password is wrong!" -msgstr "Het oude wachtwoord is verkeerd." +#: templates/users.php:11 +msgid "Name" +msgstr "" -#: ../ajax/changepassword.php:31 -msgid "Password changed" -msgstr "Wachtwoord aangepast" +#: templates/users.php:12 +msgid "Password" +msgstr "" -#: ../ajax/changepassword.php:34 -msgid "Unable to change password" -msgstr "Wachtwoord aanpassen is niet mogelijk" +#: templates/users.php:13 templates/users.php:28 +msgid "Groups" +msgstr "" -#: ../ajax/setlanguage.php:21 -msgid "Language changed" -msgstr "Taal aangepast" +#: templates/users.php:18 +msgid "Create" +msgstr "" -#: ../ajax/setlanguage.php:23 -msgid "Invalid request" -msgstr "Ongeldig verzoek" +#: templates/users.php:36 +msgid "Remove" +msgstr "" diff --git a/l10n/pl/admin.po b/l10n/pl/admin.po deleted file mode 100644 index 8efe13a268b..00000000000 --- a/l10n/pl/admin.po +++ /dev/null @@ -1,93 +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. -# -# Kamil Domański , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-28 00:09+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ../templates/app.php:22 -msgid "read more" -msgstr "czytaj więcej" - -#: ../templates/app.php:24 -msgid "INSTALL" -msgstr "INSTALUJ" - -#: ../templates/app_noconn.php:6 ../templates/apps.php:6 -msgid "Apps Repository" -msgstr "Repozytorium aplikacji" - -#: ../templates/app_noconn.php:7 -msgid "Cannot connect to apps repository" -msgstr "Nie można połączyć się z repozytorium aplikacji" - -#: ../templates/apps.php:13 ../templates/users.php:6 ../templates/users.php:15 -#: ../templates/users.php:51 -msgid "Name" -msgstr "Nazwa" - -#: ../templates/apps.php:14 -msgid "Modified" -msgstr "Zmodyfikowano" - -#: ../templates/system.php:6 -msgid "Administration" -msgstr "Administracja" - -#: ../templates/system.php:7 -msgid "System Settings" -msgstr "Ustawienia systemowe" - -#: ../templates/users.php:2 -msgid "Users" -msgstr "Użytkownicy" - -#: ../templates/users.php:7 ../templates/users.php:47 -msgid "Groups" -msgstr "Grupy" - -#: ../templates/users.php:16 -msgid "Password" -msgstr "Hasło" - -#: ../templates/users.php:25 -msgid "Create" -msgstr "" - -#: ../templates/users.php:37 ../templates/users.php:69 -msgid "remove" -msgstr "usuń" - -#: ../templates/users.php:59 -msgid "Create group" -msgstr "Utwórz grupę" - -#: ../templates/users.php:95 -msgid "Force new password:" -msgstr "Wymuś nowe hasło" - -#: ../templates/users.php:97 -msgid "Set" -msgstr "Ustaw" - -#: ../templates/users.php:103 -msgid "Do you really want to delete user" -msgstr "Czy naprawdę chcesz usunąć użytkownika" - -#: ../templates/users.php:110 -msgid "Do you really want to delete group" -msgstr "Czy naprawdę chcesz usunąć grupę" - - diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 073bb8cd31d..fbc3cacface 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-28 00:33+0000\n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:33+0000\n" "Last-Translator: JanCBorchardt \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -17,112 +17,93 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: ../templates/404.php:15 -msgid "Error 404, Cloud not found" -msgstr "Błąd 404, Chmura nie znaleziona" - -#: ../templates/installation.php:6 -msgid "ownCloud is your personal web storage." -msgstr "" +#: templates/login.php:4 +msgid "Login failed!" +msgstr "Nie udało się zalogować!" -#: ../templates/installation.php:7 -msgid "Finish the setup by following the steps below." +#: templates/login.php:9 templates/login.php:13 +msgid "remember" msgstr "" -#: ../templates/installation.php:26 -msgid "Create an admin account." +#: templates/installation.php:20 +msgid "Create an admin account" msgstr "" -#: ../templates/installation.php:27 +#: templates/installation.php:21 msgid "Username" msgstr "" -#: ../templates/installation.php:28 +#: templates/installation.php:22 msgid "Password" msgstr "" -#: ../templates/installation.php:31 -msgid "Advanced" -msgstr "Zaawansowane" +#: templates/installation.php:27 +msgid "Configure the database" +msgstr "" -#: ../templates/installation.php:34 -msgid "Set where to store the data." -msgstr "Ustaw, gdzie przechowywać dane." +#: templates/installation.php:32 templates/installation.php:43 +#: templates/installation.php:53 +msgid "will be used" +msgstr "" -#: ../templates/installation.php:35 -msgid "Data directory:" -msgstr "Katalog danych:" +#: templates/installation.php:64 +msgid "Database user" +msgstr "" -#: ../templates/installation.php:39 -msgid "Configure the database." +#: templates/installation.php:65 +msgid "Database password" msgstr "" -#: ../templates/installation.php:43 -msgid "SQLite will be used for the database. You have nothing to do." +#: templates/installation.php:66 +msgid "Database name" msgstr "" -#: ../templates/installation.php:46 -msgid "SQLite" -msgstr "SQLite" +#: templates/installation.php:74 +msgid "Advanced" +msgstr "Zaawansowane" -#: ../templates/installation.php:53 -msgid "MySQL will be used for the database." +#: templates/installation.php:77 +msgid "Host" msgstr "" -#: ../templates/installation.php:59 -msgid "MySQL username:" +#: templates/installation.php:78 +msgid "Table prefix" msgstr "" -#: ../templates/installation.php:60 -msgid "MySQL password:" +#: templates/installation.php:80 +msgid "Data folder" msgstr "" -#: ../templates/installation.php:61 -msgid "Database name:" -msgstr "Nazwa bazy:" - -#: ../templates/installation.php:62 -msgid "Host:" -msgstr "Host:" - -#: ../templates/installation.php:63 -msgid "Table prefix:" -msgstr "Przedrostek tabeli:" - -#: ../templates/installation.php:69 +#: templates/installation.php:83 msgid "Finish setup" msgstr "Zakończ instalację" -#: ../templates/layout.guest.php:33 -msgid "" -"ownCloud is a personal cloud which runs" -" on your own server.

" +#: templates/404.php:12 +msgid "Cloud not found" msgstr "" -"ownCloud jest osobistą chmurą " -"działającą na Twoim własnym serwerze.

" - -#: ../templates/login.php:6 -msgid "Login failed!" -msgstr "Nie udało się zalogować!" -#: ../templates/login.php:11 ../templates/login.php:15 -msgid "Remember login" +#: templates/layout.guest.php:38 +msgid "is a personal cloud which runs on your own server" msgstr "" -#: ../templates/logout.php:1 -msgid "You are logged out." -msgstr "Jesteś wylogowany." - -#: ../templates/part.pagenavi.php:6 +#: templates/part.pagenavi.php:6 msgid "prev" msgstr "wstecz" -#: ../templates/part.pagenavi.php:26 +#: templates/part.pagenavi.php:26 msgid "next" msgstr "dalej" -#: ../templates/part.searchbox.php:3 -msgid "Search" -msgstr "Szukaj" +#: templates/logout.php:1 +msgid "You are logged out." +msgstr "Jesteś wylogowany." + +#: templates/layout.user.php:36 +msgid "Log out" +msgstr "" + +#: templates/layout.user.php:56 +msgid "Settings" +msgstr "" diff --git a/l10n/pl/help.po b/l10n/pl/help.po deleted file mode 100644 index a4390c8bdad..00000000000 --- a/l10n/pl/help.po +++ /dev/null @@ -1,28 +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. -# -# Kamil Domański , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:16+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ../templates/index.php:2 -msgid "Questions and Answers" -msgstr "Pytania i odpowiedzi" - -#: ../templates/index.php:24 -msgid "ASK A QUESTION" -msgstr "ZADAJ PYTANIE" - - diff --git a/l10n/pl/log.po b/l10n/pl/log.po deleted file mode 100644 index 5afe1b6f4c3..00000000000 --- a/l10n/pl/log.po +++ /dev/null @@ -1,68 +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. -# -# Kamil Domański , 2011. -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:16+0000\n" -"Last-Translator: JanCBorchardt \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: ../templates/index.php:4 -msgid "Filter:" -msgstr "Filtr:" - -#: ../templates/index.php:7 -msgid "Logins" -msgstr "Zalogowania" - -#: ../templates/index.php:8 -msgid "Logouts" -msgstr "Wylogowani" - -#: ../templates/index.php:9 -msgid "Downloads" -msgstr "Pobrania" - -#: ../templates/index.php:10 -msgid "Uploads" -msgstr "Wgrania" - -#: ../templates/index.php:11 -msgid "Creations" -msgstr "Utworzenia" - -#: ../templates/index.php:12 -msgid "Deletions" -msgstr "Usunięcia" - -#: ../templates/index.php:15 -msgid "Show:" -msgstr "Pokaż:" - -#: ../templates/index.php:16 -msgid "entries per page." -msgstr "wpisów na stronę." - -#: ../templates/index.php:26 -msgid "What" -msgstr "Co" - -#: ../templates/index.php:27 -msgid "When" -msgstr "Kiedy" - -#: ../templates/index.php:45 -msgid "Clear log entries before" -msgstr "Wyczyść spisy dziennika sprzed" - - diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 99ae9c3ff08..728db747edd 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-07-27 12:03+0200\n" -"PO-Revision-Date: 2011-07-25 16:16+0000\n" +"POT-Creation-Date: 2011-08-13 04:33+0200\n" +"PO-Revision-Date: 2011-08-13 02:19+0000\n" "Last-Translator: JanCBorchardt \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -17,72 +17,96 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" -#: ../templates/index.php:3 +#: ajax/openid.php:13 ajax/setlanguage.php:13 +msgid "Authentication error" +msgstr "Błąd uwierzytelniania" + +#: ajax/openid.php:21 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:23 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "Nieprawidłowe żądanie" + +#: ajax/setlanguage.php:21 +msgid "Language changed" +msgstr "Język zmieniony" + +#: templates/help.php:21 +msgid "Ask a question" +msgstr "" + +#: templates/apps.php:12 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:14 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:14 +msgid "by" +msgstr "" + +#: templates/personal.php:3 msgid "Account information" msgstr "Dane konta" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "You're currently using" msgstr "Obecnie używasz" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "of your" msgstr "ze swoich" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "space" msgstr "przestrzeni" -#: ../templates/index.php:11 +#: templates/personal.php:11 templates/personal.php:17 msgid "Change Password" msgstr "Zmień hasło" -#: ../templates/index.php:12 +#: templates/personal.php:12 msgid "Your password got changed" msgstr "Twoje hasło zostało zmienione" -#: ../templates/index.php:15 -msgid "Old password:" -msgstr "Stare hasło" +#: templates/personal.php:14 +msgid "Old password" +msgstr "" -#: ../templates/index.php:19 +#: templates/personal.php:15 msgid "New password" msgstr "Nowe hasło" -#: ../templates/index.php:24 -msgid "Show new password" -msgstr "Pokaż nowe hasło" +#: templates/personal.php:16 +msgid "show" +msgstr "" -#: ../templates/index.php:34 +#: templates/personal.php:23 msgid "Language" msgstr "Język" -#: ../ajax/changepassword.php:13 ../ajax/setlanguage.php:13 -msgid "Authentication error" -msgstr "Błąd uwierzytelniania" - -#: ../ajax/changepassword.php:19 -msgid "You have to enter the old and the new password!" -msgstr "Musisz wprowadzić zarówno stare, jak i nowe hasło!" - -#: ../ajax/changepassword.php:25 -msgid "Your old password is wrong!" -msgstr "Twoje stare hasło jest błędne!" +#: templates/users.php:11 +msgid "Name" +msgstr "" -#: ../ajax/changepassword.php:31 -msgid "Password changed" -msgstr "Hasło zmienione" +#: templates/users.php:12 +msgid "Password" +msgstr "" -#: ../ajax/changepassword.php:34 -msgid "Unable to change password" -msgstr "NIe można zmienić hasła" +#: templates/users.php:13 templates/users.php:28 +msgid "Groups" +msgstr "" -#: ../ajax/setlanguage.php:21 -msgid "Language changed" -msgstr "Język zmieniony" +#: templates/users.php:18 +msgid "Create" +msgstr "" -#: ../ajax/setlanguage.php:23 -msgid "Invalid request" -msgstr "Nieprawidłowe żądanie" +#: templates/users.php:36 +msgid "Remove" +msgstr "" diff --git a/l10n/templates/admin.pot b/l10n/templates/admin.pot deleted file mode 100644 index e28b1eb7ae4..00000000000 --- a/l10n/templates/admin.pot +++ /dev/null @@ -1,58 +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 , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-09 17:52+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../templates/app.php:17 -msgid "read more" -msgstr "" - -#: ../templates/app.php:19 -msgid "Install" -msgstr "" - -#: ../templates/app_noconn.php:1 -msgid "Cannot connect to apps repository" -msgstr "" - -#: ../templates/apps.php:5 ../templates/users.php:3 ../templates/users.php:7 -msgid "Name" -msgstr "" - -#: ../templates/apps.php:6 -msgid "Modified" -msgstr "" - -#: ../templates/system.php:1 -msgid "System Settings" -msgstr "" - -#: ../templates/users.php:4 ../templates/users.php:14 -msgid "Create" -msgstr "" - -#: ../templates/users.php:8 -msgid "Password" -msgstr "" - -#: ../templates/users.php:9 -msgid "Groups" -msgstr "" - -#: ../templates/users.php:33 -msgid "Remove" -msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 7189eb49889..7e3500b0a9a 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-09 17:52+0200\n" +"POT-Creation-Date: 2011-08-13 05:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,120 +17,91 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../templates/404.php:12 -msgid "Cloud not found" +#: templates/login.php:4 +msgid "Login failed!" +msgstr "" + +#: templates/login.php:9 templates/login.php:13 +msgid "remember" msgstr "" -#: ../templates/installation.php:20 +#: templates/installation.php:20 msgid "Create an admin account" msgstr "" -#: ../templates/installation.php:21 +#: templates/installation.php:21 msgid "Username" msgstr "" -#: ../templates/installation.php:22 +#: templates/installation.php:22 msgid "Password" msgstr "" -#: ../templates/installation.php:27 +#: templates/installation.php:27 msgid "Configure the database" msgstr "" -#: ../templates/installation.php:31 -msgid "SQLite will be used." -msgstr "" - -#: ../templates/installation.php:34 -msgid "SQLite" -msgstr "" - -#: ../templates/installation.php:41 -msgid "MySQL will be used." +#: templates/installation.php:32 templates/installation.php:43 +#: templates/installation.php:53 +msgid "will be used" msgstr "" -#: ../templates/installation.php:50 -msgid "PostgreSQL will be used." -msgstr "" - -#: ../templates/installation.php:59 +#: templates/installation.php:64 msgid "Database user" msgstr "" -#: ../templates/installation.php:60 +#: templates/installation.php:65 msgid "Database password" msgstr "" -#: ../templates/installation.php:61 +#: templates/installation.php:66 msgid "Database name" msgstr "" -#: ../templates/installation.php:62 -msgid "Host" -msgstr "" - -#: ../templates/installation.php:63 -msgid "Table prefix" +#: templates/installation.php:74 +msgid "Advanced" msgstr "" -#: ../templates/installation.php:70 -msgid "Advanced" +#: templates/installation.php:77 +msgid "Host" msgstr "" -#: ../templates/installation.php:73 -msgid "Set data folder" +#: templates/installation.php:78 +msgid "Table prefix" msgstr "" -#: ../templates/installation.php:74 +#: templates/installation.php:80 msgid "Data folder" msgstr "" -#: ../templates/installation.php:77 +#: templates/installation.php:83 msgid "Finish setup" msgstr "" -#: ../templates/layout.guest.php:38 -msgid "" -"ownCloud is a personal cloud which runs " -"on your own server.

" -msgstr "" - -#: ../templates/login.php:4 -msgid "Login failed!" -msgstr "" - -#: ../templates/login.php:9 ../templates/login.php:13 -msgid "remember" +#: templates/404.php:12 +msgid "Cloud not found" msgstr "" -#: ../templates/logout.php:1 -msgid "You are logged out." +#: templates/layout.guest.php:38 +msgid "is a personal cloud which runs on your own server" msgstr "" -#: ../templates/part.pagenavi.php:6 +#: templates/part.pagenavi.php:6 msgid "prev" msgstr "" -#: ../templates/part.pagenavi.php:26 +#: templates/part.pagenavi.php:26 msgid "next" msgstr "" -#: ../../lib/app.php:204 -msgid "Users" -msgstr "" - -#: ../../lib/app.php:205 -msgid "Apps" -msgstr "" - -#: ../../lib/app.php:206 -msgid "Files" +#: templates/logout.php:1 +msgid "You are logged out." msgstr "" -#: ../../lib/app.php:209 -msgid "Help" +#: templates/layout.user.php:36 +msgid "Log out" msgstr "" -#: ../../lib/app.php:210 -msgid "Personal" +#: templates/layout.user.php:56 +msgid "Settings" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 271ca0fcb40..2b86a554a43 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-09 17:52+0200\n" +"POT-Creation-Date: 2011-08-13 05:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,48 +17,52 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../appinfo/app.php:7 +#: appinfo/app.php:7 msgid "Files" msgstr "" -#: ../templates/index.php:11 +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "" + +#: templates/part.list.php:1 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:9 msgid "Upload" msgstr "" -#: ../templates/index.php:17 +#: templates/index.php:16 msgid "New Folder" msgstr "" -#: ../templates/index.php:30 +#: templates/index.php:29 msgid "Name" msgstr "" -#: ../templates/index.php:32 +#: templates/index.php:31 msgid "Download" msgstr "" -#: ../templates/index.php:36 -msgid "Size MB" +#: templates/index.php:35 +msgid "Size" msgstr "" -#: ../templates/index.php:37 +#: templates/index.php:36 msgid "Modified" msgstr "" -#: ../templates/index.php:37 +#: templates/index.php:36 msgid "Delete" msgstr "" -#: ../templates/index.php:45 +#: templates/index.php:44 msgid "Upload too large" msgstr "" -#: ../templates/index.php:47 +#: templates/index.php:46 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" - -#: ../templates/part.list.php:1 -msgid "Nothing in here. Upload something!" -msgstr "" diff --git a/l10n/templates/help.pot b/l10n/templates/media.pot similarity index 57% rename from l10n/templates/help.pot rename to l10n/templates/media.pot index 0e24e1c9655..8f37696f2eb 100644 --- a/l10n/templates/help.pot +++ b/l10n/templates/media.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-09 17:52+0200\n" +"POT-Creation-Date: 2011-08-13 05:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,6 +17,30 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../templates/index.php:21 -msgid "Ask a question" +#: appinfo/app.php:31 +msgid "Music" +msgstr "" + +#: templates/music.php:27 +msgid "Songs scanned" +msgstr "" + +#: templates/music.php:29 +msgid "Rescan Collection" +msgstr "" + +#: templates/music.php:30 +msgid "Pause" +msgstr "" + +#: templates/music.php:34 +msgid "Artist" +msgstr "" + +#: templates/music.php:35 +msgid "Album" +msgstr "" + +#: templates/music.php:36 +msgid "Title" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index dc438e488c2..d35142e50c6 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-09 17:52+0200\n" +"POT-Creation-Date: 2011-08-13 05:10+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,70 +17,94 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ../templates/index.php:3 +#: ajax/openid.php:13 ajax/setlanguage.php:13 +msgid "Authentication error" +msgstr "" + +#: ajax/openid.php:21 +msgid "OpenID Changed" +msgstr "" + +#: ajax/openid.php:23 ajax/setlanguage.php:23 +msgid "Invalid request" +msgstr "" + +#: ajax/setlanguage.php:21 +msgid "Language changed" +msgstr "" + +#: templates/help.php:21 +msgid "Ask a question" +msgstr "" + +#: templates/apps.php:12 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:14 +msgid "-licensed" +msgstr "" + +#: templates/apps.php:14 +msgid "by" +msgstr "" + +#: templates/personal.php:3 msgid "Account information" msgstr "" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "You're currently using" msgstr "" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "of your" msgstr "" -#: ../templates/index.php:5 +#: templates/personal.php:5 msgid "space" msgstr "" -#: ../templates/index.php:11 ../templates/index.php:17 +#: templates/personal.php:11 templates/personal.php:17 msgid "Change Password" msgstr "" -#: ../templates/index.php:12 +#: templates/personal.php:12 msgid "Your password got changed" msgstr "" -#: ../templates/index.php:14 +#: templates/personal.php:14 msgid "Old password" msgstr "" -#: ../templates/index.php:15 +#: templates/personal.php:15 msgid "New password" msgstr "" -#: ../templates/index.php:16 +#: templates/personal.php:16 msgid "show" msgstr "" -#: ../templates/index.php:23 +#: templates/personal.php:23 msgid "Language" msgstr "" -#: ../ajax/changepassword.php:13 ../ajax/setlanguage.php:13 -msgid "Authentication error" +#: templates/users.php:11 +msgid "Name" msgstr "" -#: ../ajax/changepassword.php:19 -msgid "You have to enter the old and the new password!" +#: templates/users.php:12 +msgid "Password" msgstr "" -#: ../ajax/changepassword.php:25 -msgid "Your old password is wrong!" +#: templates/users.php:13 templates/users.php:28 +msgid "Groups" msgstr "" -#: ../ajax/changepassword.php:31 -msgid "Password changed" +#: templates/users.php:18 +msgid "Create" 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" +#: templates/users.php:36 +msgid "Remove" msgstr "" diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index f81a9f5e413..3212b489403 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -1,19 +1,13 @@ "Проблем с индентификацията", +"Invalid request" => "Невалидна заявка", +"Language changed" => "Езика е сменен", "Account information" => "Информация за профила", "You're currently using" => "Вие ползвате", "of your" => "на Вашето", "space" => "място", "Change Password" => "Промяна на парола", "Your password got changed" => "Вашата парола е сменена", -"Old password:" => "Стара парола", "New password" => "Нова парола", -"Show new password" => "Покажи новата парола", -"Language" => "Език", -"Authentication error" => "Проблем с индентификацията", -"You have to enter the old and the new password!" => "Трябва да въведете новата и старата парола!", -"Your old password is wrong!" => "Вашата стара парола е грешна!", -"Password changed" => "Паролата е сменена", -"Unable to change password" => "Невъзможна смяна на паролата", -"Language changed" => "Езика е сменен", -"Invalid request" => "Невалидна заявка" +"Language" => "Език" ); diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 37a56f2f64c..ddccc98e482 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,19 +1,13 @@ "Godkendelsesfejl", +"Invalid request" => "Invalid forespørgsel", +"Language changed" => "Sprog ændret", "Account information" => "Konto information", "You're currently using" => "Du udnytter i øjeblikket", "of your" => "af din", "space" => "plads", "Change Password" => "Ændre adgangskode", "Your password got changed" => "Din adgangskode er ændret", -"Old password:" => "Gamle adgangskode", "New password" => "Nye adgangskode", -"Show new password" => "Vis den nye adgangskode", -"Language" => "Sprog", -"Authentication error" => "Godkendelsesfejl", -"You have to enter the old and the new password!" => "Du skal indtaste din gamle og nye adganskode", -"Your old password is wrong!" => "Din gamle adgangskode er forkert!", -"Password changed" => "Adgangskoden er ændret", -"Unable to change password" => "Kan ikke ændre din adgangskode", -"Language changed" => "Sprog ændret", -"Invalid request" => "Invalid forespørgsel" +"Language" => "Sprog" ); diff --git a/settings/l10n/de.php b/settings/l10n/de.php index e3be20de33e..a1fa2e26817 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,19 +1,25 @@ "Berechtigungsfehler", +"OpenID Changed" => "OpenID geändert", +"Invalid request" => "Ungültige Anfrage", +"Language changed" => "Sprache geändert", +"Ask a question" => "Stell eine Frage", +"Select an App" => "Wähle eine Anwendung aus", +"-licensed" => "-lizenziert", +"by" => "von", "Account information" => "Konto-Information", "You're currently using" => "Du benutzt gerade", "of your" => "von deinem", "space" => "Speicherplatz", "Change Password" => "Passwort ändern", -"Your password got changed" => "Dein Passwort wurde geändert.", -"Old password:" => "Aktuelles Passwort:", -"New password" => "Neues Passwort:", -"Show new password" => "Neues Passwort anzeigen", +"Your password got changed" => "Dein Passwort wurde geändert", +"Old password" => "Altes Passwort", +"New password" => "Neues Passwort", +"show" => "zeigen", "Language" => "Sprache", -"Authentication error" => "Berechtigungsfehler", -"You have to enter the old and the new password!" => "Du musst das aktuelle und ein neues Passwort angeben!", -"Your old password is wrong!" => "Du hast dein aktuelles Passwort falsch eingegeben!", -"Password changed" => "Passwort geändert", -"Unable to change password" => "Passwort konnte nicht geändert werden", -"Language changed" => "Sprache geändert", -"Invalid request" => "Ungültige Anfrage" +"Name" => "Name", +"Password" => "Passwort", +"Groups" => "Gruppen", +"Create" => "Anlegen", +"Remove" => "Entfernen" ); diff --git a/settings/l10n/es.php b/settings/l10n/es.php index bde223680fb..388680e53fc 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,19 +1,13 @@ "Error de autentificación", +"Invalid request" => "Solicitud no válida", +"Language changed" => "Idioma cambiado", "Account information" => "Información de la cuenta", "You're currently using" => "Estás utilizando", "of your" => "de tus", "space" => "de espacio total", "Change Password" => "Cambiar contraseña", "Your password got changed" => "Tu contraseña ha sido cambiada", -"Old password:" => "Antigua contraseña:", "New password" => "Nueva contraseña:", -"Show new password" => "Mostrar nueva contraseña", -"Language" => "Idioma", -"Authentication error" => "Error de autentificación", -"You have to enter the old and the new password!" => "¡Tienes que introducir la contraseña antigua y la contraseña nueva!", -"Your old password is wrong!" => "¡Tu contraseña antigua es incorrecta!", -"Password changed" => "Contraseña cambiada", -"Unable to change password" => "No se puede cambiar la contraseña", -"Language changed" => "Idioma cambiado", -"Invalid request" => "Solicitud no válida" +"Language" => "Idioma" ); diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 758189e18bc..93b118bf77f 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,19 +1,15 @@ "Erreur d'authentification", +"Invalid request" => "Requète invalide", +"Language changed" => "Langue changée avec succès", "Account information" => "Informations sur le compte", "You're currently using" => "Vous utilisez actuellement", -"of your" => "de votre", -"space" => "espace de stockage", +"of your" => "de votre espace de stockage de", +"space" => " ", "Change Password" => "Changer votre mot de passe", "Your password got changed" => "Votre mot de passe a été changé", -"Old password:" => "Ancien mot de passe :", +"Old password" => "Ancien mot de passe", "New password" => "Nouveau mot de passe :", -"Show new password" => "Afficher votre nouveau mot de passe", -"Language" => "Langue", -"Authentication error" => "Erreur d'authentification", -"You have to enter the old and the new password!" => "Vous devez saisir l'ancien et le nouveau mot de passe !", -"Your old password is wrong!" => "Votre ancien mot de passe est erroné !", -"Password changed" => "Mot de passe changé avec succès", -"Unable to change password" => "Impossible de changer le mot de passe", -"Language changed" => "Langue changée avec succès", -"Invalid request" => "Requète invalide" +"show" => "Afficher", +"Language" => "Langue" ); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 3c2f3dbd271..2394fbd74ff 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,19 +1,13 @@ "Authenticatiefout.", +"Invalid request" => "Ongeldig verzoek", +"Language changed" => "Taal aangepast", "Account information" => "Gebruikersgegevens", "You're currently using" => "U gebruikt momenteel", "of your" => "van de", "space" => "beschikbare ruimte.", "Change Password" => "Wachtwoord aanpassen", "Your password got changed" => "Uw wachtwoord is aangepast", -"Old password:" => "Oud wachtwoord:", "New password" => "Nieuw wachtwoord", -"Show new password" => "Toon nieuw wachtwoord", -"Language" => "Taal", -"Authentication error" => "Authenticatiefout.", -"You have to enter the old and the new password!" => "U moet het oude en nieuwe wachtwoord invullen.", -"Your old password is wrong!" => "Het oude wachtwoord is verkeerd.", -"Password changed" => "Wachtwoord aangepast", -"Unable to change password" => "Wachtwoord aanpassen is niet mogelijk", -"Language changed" => "Taal aangepast", -"Invalid request" => "Ongeldig verzoek" +"Language" => "Taal" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index b65fdd15b4d..c5afac7d2e0 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -1,19 +1,13 @@ "Błąd uwierzytelniania", +"Invalid request" => "Nieprawidłowe żądanie", +"Language changed" => "Język zmieniony", "Account information" => "Dane konta", "You're currently using" => "Obecnie używasz", "of your" => "ze swoich", "space" => "przestrzeni", "Change Password" => "Zmień hasło", "Your password got changed" => "Twoje hasło zostało zmienione", -"Old password:" => "Stare hasło", "New password" => "Nowe hasło", -"Show new password" => "Pokaż nowe hasło", -"Language" => "Język", -"Authentication error" => "Błąd uwierzytelniania", -"You have to enter the old and the new password!" => "Musisz wprowadzić zarówno stare, jak i nowe hasło!", -"Your old password is wrong!" => "Twoje stare hasło jest błędne!", -"Password changed" => "Hasło zmienione", -"Unable to change password" => "NIe można zmienić hasła", -"Language changed" => "Język zmieniony", -"Invalid request" => "Nieprawidłowe żądanie" +"Language" => "Język" ); From 7ece8ed31439df9b321ff1800483079a6a7dcfac Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sat, 13 Aug 2011 05:27:50 +0200 Subject: [PATCH 03/27] added global action class for icons --- apps/contacts/templates/part.details.php | 4 ++-- apps/contacts/templates/part.property.php | 20 ++++++++++---------- apps/media/js/playlist.js | 2 +- core/css/styles.css | 4 ++-- files/css/files.css | 2 +- files/js/fileactions.js | 12 ++++++------ settings/js/users.js | 2 +- settings/templates/users.php | 4 ++-- 8 files changed, 25 insertions(+), 25 deletions(-) diff --git a/apps/contacts/templates/part.details.php b/apps/contacts/templates/part.details.php index 4277357b759..119c88486ac 100644 --- a/apps/contacts/templates/part.details.php +++ b/apps/contacts/templates/part.details.php @@ -24,6 +24,6 @@
- - + +
diff --git a/apps/contacts/templates/part.property.php b/apps/contacts/templates/part.property.php index 06587269202..cdb03068128 100644 --- a/apps/contacts/templates/part.property.php +++ b/apps/contacts/templates/part.property.php @@ -3,27 +3,27 @@
t('Name'); ?>
- +
t('Birthday'); ?>
l('date',new DateTime($_['property']['value'])); ?> - +
t('Organisation'); ?>
- - + +
t('Email'); ?>
- - + +
t('Telephone'); ?>
@@ -32,8 +32,8 @@ (t('tel_'.strtolower($_['property']['parameters']['TYPE'])); ?>) - - + +
@@ -51,8 +51,8 @@ t('Region'); ?>
t('Postal Code'); ?>
t('Country'); ?> - - + +
diff --git a/apps/media/js/playlist.js b/apps/media/js/playlist.js index 778939db01c..cb7f24522a4 100644 --- a/apps/media/js/playlist.js +++ b/apps/media/js/playlist.js @@ -5,7 +5,7 @@ PlayList.render=function(){ var item=PlayList.items[i]; var li=$('
  • '); li.append(item.name); - var img=$(''); + var img=$(''); img.click(function(event){ event.stopPropagation(); PlayList.remove($(this).parent().data('index')); diff --git a/core/css/styles.css b/core/css/styles.css index ff12ab1e07c..6ea08d529d8 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -102,5 +102,5 @@ li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ff -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; } -.file_action, .selectedActions a, #logout { opacity:.5; } -.file_action:hover, .selectedActions a:hover, #logout:hover { opacity:1; } +.action, .selectedActions a, #logout { opacity:.3; -webkit-transition:opacity 500ms; -moz-transition:opacity 500ms; -o-transition:opacity 500ms; transition:opacity 500ms; } +.action:hover, .selectedActions a:hover, #logout:hover { opacity:1; } diff --git a/files/css/files.css b/files/css/files.css index ef86664cf2d..af860d60b9a 100644 --- a/files/css/files.css +++ b/files/css/files.css @@ -60,7 +60,7 @@ table thead.fixed { height:2em; } #fileList tr.selected td.filename, #fileList tr:hover td.filename { background-image:url('') !important; } #select_all { float:left; margin:.2em; margin-left:.6em; } #uploadsize-message,#delete-confirm { display:none; } -.selectedActions a, a.file_action { float:right; display:inline; margin:0 .5em; padding:.3em .3em 0 .3em !important; } +.selectedActions a, a.action { float:right; display:inline; margin:0 .5em; padding:.3em .3em 0 .3em !important; } .selectedActions { display:none; } /* add breadcrumb divider to the File item in navigation panel */ diff --git a/files/js/fileactions.js b/files/js/fileactions.js index 2bc79abe723..a0a04ff1662 100644 --- a/files/js/fileactions.js +++ b/files/js/fileactions.js @@ -53,7 +53,7 @@ FileActions={ }, display:function(parent){ FileActions.currentFile=parent; - $('.file_action').remove(); + $('.action').remove(); var actions=FileActions.get(FileActions.getCurrentMimeType(),FileActions.getCurrentType()); var file=FileActions.getCurrentFile(); if($('tr[data-file="'+file+'"]').data('renaming')){ @@ -66,7 +66,7 @@ FileActions={ if(img.call){ img=img(file); } - var html=''; + var html=''; var element=$(html); if(img){ element.append($('')); @@ -85,7 +85,7 @@ FileActions={ } if(actions['Delete']){ var img=FileActions.icons['Delete']; - var html=''; + var html=''; var element=$(html); if(img){ element.append($('')); @@ -101,12 +101,12 @@ FileActions={ }); parent.parent().children().last().append(element); } - $('.file_action').hide(); - $('.file_action').fadeIn(200); + $('.action').hide(); + $('.action').fadeIn(200); return false; }, hide:function(){ - $('.file_action').fadeOut(200,function(){ + $('.action').fadeOut(200,function(){ $(this).remove(); }); }, diff --git a/settings/js/users.js b/settings/js/users.js index addf1c2d65f..efa08cd0ba1 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -104,7 +104,7 @@ $(document).ready(function(){ }); tr.find('td.groups').append(select); if(tr.find('td.remve img').length==0){ - tr.find('td.remove').append($('Remove')); + tr.find('td.remove').append($('Remove')); } applyMultiplySelect(select); $('#content table tr').last().after(tr); diff --git a/settings/templates/users.php b/settings/templates/users.php index 0009c85fa38..7a99c0eb412 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -22,7 +22,7 @@ foreach($_["groups"] as $group) { ●●●●●●● - + - +

    +
    + From 2ba37936714fc15af6191137dd0cdd3681f71ca7 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sat, 13 Aug 2011 12:43:15 +0200 Subject: [PATCH 11/27] updated translations --- .tx/config | 8 +++-- apps/media/l10n/de.php | 9 +++++ apps/media/l10n/fr.php | 9 +++++ core/l10n/fr.php | 6 +++- files/l10n/de.php | 14 ++++++++ files/l10n/fr.php | 14 ++++++++ l10n/de/files.po | 71 ++++++++++++++++++++++++++++++++++++ l10n/de/media.po | 48 +++++++++++++++++++++++++ l10n/fr/core.po | 14 ++++---- l10n/fr/files.po | 72 +++++++++++++++++++++++++++++++++++++ l10n/fr/media.po | 48 +++++++++++++++++++++++++ l10n/fr/settings.po | 26 +++++++------- l10n/templates/core.pot | 4 +-- l10n/templates/files.pot | 2 +- l10n/templates/media.pot | 12 +++---- l10n/templates/settings.pot | 2 +- settings/l10n/fr.php | 12 ++++++- 17 files changed, 337 insertions(+), 34 deletions(-) create mode 100644 apps/media/l10n/de.php create mode 100644 apps/media/l10n/fr.php create mode 100644 files/l10n/de.php create mode 100644 files/l10n/fr.php create mode 100644 l10n/de/files.po create mode 100644 l10n/de/media.po create mode 100644 l10n/fr/files.po create mode 100644 l10n/fr/media.po diff --git a/.tx/config b/.tx/config index ea4651efc93..0648c8e09b1 100644 --- a/.tx/config +++ b/.tx/config @@ -14,14 +14,18 @@ source_file = l10n/templates/settings.pot source_lang = en [owncloud.files] -file_filter = l10n//files.po +file_filter = translations/owncloud.files/.po host = http://www.transifex.net source_file = l10n/templates/files.pot source_lang = en +trans.de = l10n/de/files.po +trans.fr = l10n/fr/files.po [owncloud.media] -file_filter = l10n//media.po +file_filter = translations/owncloud.media/.po host = http://www.transifex.net source_file = l10n/templates/media.pot source_lang = en +trans.de = l10n/de/media.po +trans.fr = l10n/fr/media.po diff --git a/apps/media/l10n/de.php b/apps/media/l10n/de.php new file mode 100644 index 00000000000..9f664b78d80 --- /dev/null +++ b/apps/media/l10n/de.php @@ -0,0 +1,9 @@ + "Musik", +"Songs scanned" => "Lieder gescannt", +"Rescan Collection" => "Sammlung scannen", +"Pause" => "Pause", +"Artist" => "Künstler", +"Album" => "Album", +"Title" => "Titel" +); diff --git a/apps/media/l10n/fr.php b/apps/media/l10n/fr.php new file mode 100644 index 00000000000..619ee9bc835 --- /dev/null +++ b/apps/media/l10n/fr.php @@ -0,0 +1,9 @@ + "Musique", +"Songs scanned" => "Pistes scannées", +"Rescan Collection" => "Réanalyser la Collection", +"Pause" => "Pause", +"Artist" => "Artiste", +"Album" => "Album", +"Title" => "Titre" +); diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 0b1b5856848..087cad0fa1d 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -5,6 +5,7 @@ "Username" => "Nom d'utilisateur", "Password" => "Mot de passe", "Configure the database" => "Configurer la base de données", +"will be used" => "sera utilisé", "Database user" => "Utilisateur de la base de données", "Database password" => "Mot de passe de la base de données", "Database name" => "Nom de la base de données", @@ -14,7 +15,10 @@ "Data folder" => "Répertoire des données", "Finish setup" => "Terminer l'installation", "Cloud not found" => "Introuvable", +"is a personal cloud which runs on your own server" => "est un service de cloud personnel propulsé par votre propre serveur", "prev" => "précédent", "next" => "suivant", -"You are logged out." => "Vous êtes désormais déconnecté." +"You are logged out." => "Vous êtes désormais déconnecté.", +"Log out" => "Se déconnecter", +"Settings" => "Paramètres" ); diff --git a/files/l10n/de.php b/files/l10n/de.php new file mode 100644 index 00000000000..ade5a049503 --- /dev/null +++ b/files/l10n/de.php @@ -0,0 +1,14 @@ + "Dateien", +"Maximum upload size" => "Maximale Größe", +"Nothing in here. Upload something!" => "Alles leer. Lad’ was hoch!", +"Upload" => "Hochladen", +"New Folder" => "Neuer Ordner", +"Name" => "Name", +"Download" => "Herunterladen", +"Size" => "Größe", +"Modified" => "Bearbeitet", +"Delete" => "Löschen", +"Upload too large" => "Upload zu groß", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." +); diff --git a/files/l10n/fr.php b/files/l10n/fr.php new file mode 100644 index 00000000000..ccaf9a3867d --- /dev/null +++ b/files/l10n/fr.php @@ -0,0 +1,14 @@ + "Fichiers", +"Maximum upload size" => "Taille max. d'envoi", +"Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", +"Upload" => "Envoyer", +"New Folder" => "Nouveau dossier", +"Name" => "Nom", +"Download" => "Téléchargement", +"Size" => "Taille", +"Modified" => "Modifié", +"Delete" => "Supprimer", +"Upload too large" => "Fichier trop volumineux", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." +); diff --git a/l10n/de/files.po b/l10n/de/files.po new file mode 100644 index 00000000000..870b38d767a --- /dev/null +++ b/l10n/de/files.po @@ -0,0 +1,71 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Jan-Christoph Borchardt , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" +"POT-Creation-Date: 2011-08-13 05:10+0200\n" +"PO-Revision-Date: 2011-08-13 02:38+0000\n" +"Last-Translator: JanCBorchardt \n" +"Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:7 +msgid "Files" +msgstr "Dateien" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Maximale Größe" + +#: templates/part.list.php:1 +msgid "Nothing in here. Upload something!" +msgstr "Alles leer. Lad’ was hoch!" + +#: templates/index.php:9 +msgid "Upload" +msgstr "Hochladen" + +#: templates/index.php:16 +msgid "New Folder" +msgstr "Neuer Ordner" + +#: templates/index.php:29 +msgid "Name" +msgstr "Name" + +#: templates/index.php:31 +msgid "Download" +msgstr "Herunterladen" + +#: templates/index.php:35 +msgid "Size" +msgstr "Größe" + +#: templates/index.php:36 +msgid "Modified" +msgstr "Bearbeitet" + +#: templates/index.php:36 +msgid "Delete" +msgstr "Löschen" + +#: templates/index.php:44 +msgid "Upload too large" +msgstr "Upload zu groß" + +#: templates/index.php:46 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." + + diff --git a/l10n/de/media.po b/l10n/de/media.po new file mode 100644 index 00000000000..923ec398870 --- /dev/null +++ b/l10n/de/media.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Jan-Christoph Borchardt , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" +"POT-Creation-Date: 2011-08-13 05:10+0200\n" +"PO-Revision-Date: 2011-08-13 02:35+0000\n" +"Last-Translator: JanCBorchardt \n" +"Language-Team: German (http://www.transifex.net/projects/p/owncloud/team/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: appinfo/app.php:31 +msgid "Music" +msgstr "Musik" + +#: templates/music.php:27 +msgid "Songs scanned" +msgstr "Lieder gescannt" + +#: templates/music.php:29 +msgid "Rescan Collection" +msgstr "Sammlung scannen" + +#: templates/music.php:30 +msgid "Pause" +msgstr "Pause" + +#: templates/music.php:34 +msgid "Artist" +msgstr "Künstler" + +#: templates/music.php:35 +msgid "Album" +msgstr "Album" + +#: templates/music.php:36 +msgid "Title" +msgstr "Titel" + + diff --git a/l10n/fr/core.po b/l10n/fr/core.po index db7159b3a13..9d63c0cae7c 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-13 04:33+0200\n" -"PO-Revision-Date: 2011-08-13 02:33+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2011-08-13 05:10+0200\n" +"PO-Revision-Date: 2011-08-13 09:09+0000\n" +"Last-Translator: rom1dep \n" "Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,7 +44,7 @@ msgstr "Configurer la base de données" #: templates/installation.php:32 templates/installation.php:43 #: templates/installation.php:53 msgid "will be used" -msgstr "" +msgstr "sera utilisé" #: templates/installation.php:64 msgid "Database user" @@ -84,7 +84,7 @@ msgstr "Introuvable" #: templates/layout.guest.php:38 msgid "is a personal cloud which runs on your own server" -msgstr "" +msgstr "est un service de cloud personnel propulsé par votre propre serveur" #: templates/part.pagenavi.php:6 msgid "prev" @@ -100,10 +100,10 @@ msgstr "Vous êtes désormais déconnecté." #: templates/layout.user.php:36 msgid "Log out" -msgstr "" +msgstr "Se déconnecter" #: templates/layout.user.php:56 msgid "Settings" -msgstr "" +msgstr "Paramètres" diff --git a/l10n/fr/files.po b/l10n/fr/files.po new file mode 100644 index 00000000000..c75745d8bd0 --- /dev/null +++ b/l10n/fr/files.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" +"POT-Creation-Date: 2011-08-13 05:10+0200\n" +"PO-Revision-Date: 2011-08-13 09:14+0000\n" +"Last-Translator: rom1dep \n" +"Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +#: appinfo/app.php:7 +msgid "Files" +msgstr "Fichiers" + +#: templates/admin.php:5 +msgid "Maximum upload size" +msgstr "Taille max. d'envoi" + +#: templates/part.list.php:1 +msgid "Nothing in here. Upload something!" +msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" + +#: templates/index.php:9 +msgid "Upload" +msgstr "Envoyer" + +#: templates/index.php:16 +msgid "New Folder" +msgstr "Nouveau dossier" + +#: templates/index.php:29 +msgid "Name" +msgstr "Nom" + +#: templates/index.php:31 +msgid "Download" +msgstr "Téléchargement" + +#: templates/index.php:35 +msgid "Size" +msgstr "Taille" + +#: templates/index.php:36 +msgid "Modified" +msgstr "Modifié" + +#: templates/index.php:36 +msgid "Delete" +msgstr "Supprimer" + +#: templates/index.php:44 +msgid "Upload too large" +msgstr "Fichier trop volumineux" + +#: templates/index.php:46 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" +"Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise" +" par ce serveur." + + diff --git a/l10n/fr/media.po b/l10n/fr/media.po new file mode 100644 index 00000000000..c1b5de8345f --- /dev/null +++ b/l10n/fr/media.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# , 2011. +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" +"POT-Creation-Date: 2011-08-13 05:10+0200\n" +"PO-Revision-Date: 2011-08-13 09:06+0000\n" +"Last-Translator: rom1dep \n" +"Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +#: appinfo/app.php:31 +msgid "Music" +msgstr "Musique" + +#: templates/music.php:27 +msgid "Songs scanned" +msgstr "Pistes scannées" + +#: templates/music.php:29 +msgid "Rescan Collection" +msgstr "Réanalyser la Collection" + +#: templates/music.php:30 +msgid "Pause" +msgstr "Pause" + +#: templates/music.php:34 +msgid "Artist" +msgstr "Artiste" + +#: templates/music.php:35 +msgid "Album" +msgstr "Album" + +#: templates/music.php:36 +msgid "Title" +msgstr "Titre" + + diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 4a8ca8fad51..12bec8e1411 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.kde.org/buglist.cgi?product=owncloud\n" -"POT-Creation-Date: 2011-08-13 04:33+0200\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: JanCBorchardt \n" +"POT-Creation-Date: 2011-08-13 05:10+0200\n" +"PO-Revision-Date: 2011-08-13 09:12+0000\n" +"Last-Translator: rom1dep \n" "Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,7 +23,7 @@ msgstr "Erreur d'authentification" #: ajax/openid.php:21 msgid "OpenID Changed" -msgstr "" +msgstr "Identifiant OpenID changé avec succès" #: ajax/openid.php:23 ajax/setlanguage.php:23 msgid "Invalid request" @@ -35,19 +35,19 @@ msgstr "Langue changée avec succès" #: templates/help.php:21 msgid "Ask a question" -msgstr "" +msgstr "Poser une question" #: templates/apps.php:12 msgid "Select an App" -msgstr "" +msgstr "Sélectionner une Application" #: templates/apps.php:14 msgid "-licensed" -msgstr "" +msgstr "sous licence" #: templates/apps.php:14 msgid "by" -msgstr "" +msgstr "par" #: templates/personal.php:3 msgid "Account information" @@ -91,22 +91,22 @@ msgstr "Langue" #: templates/users.php:11 msgid "Name" -msgstr "" +msgstr "Nom" #: templates/users.php:12 msgid "Password" -msgstr "" +msgstr "Mot de passe" #: templates/users.php:13 templates/users.php:28 msgid "Groups" -msgstr "" +msgstr "Groupes" #: templates/users.php:18 msgid "Create" -msgstr "" +msgstr "Créer" #: templates/users.php:36 msgid "Remove" -msgstr "" +msgstr "Supprimer" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 7e3500b0a9a..18ebf15942f 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-13 05:10+0200\n" +"POT-Creation-Date: 2011-08-13 12:41+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -102,6 +102,6 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/layout.user.php:56 +#: templates/layout.user.php:49 msgid "Settings" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 2b86a554a43..258ec3c7729 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-13 05:10+0200\n" +"POT-Creation-Date: 2011-08-13 12:41+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/media.pot b/l10n/templates/media.pot index 8f37696f2eb..5556272181e 100644 --- a/l10n/templates/media.pot +++ b/l10n/templates/media.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-13 05:10+0200\n" +"POT-Creation-Date: 2011-08-13 12:41+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,22 +25,22 @@ msgstr "" msgid "Songs scanned" msgstr "" -#: templates/music.php:29 +#: templates/music.php:28 msgid "Rescan Collection" msgstr "" -#: templates/music.php:30 +#: templates/music.php:29 msgid "Pause" msgstr "" -#: templates/music.php:34 +#: templates/music.php:35 msgid "Artist" msgstr "" -#: templates/music.php:35 +#: templates/music.php:36 msgid "Album" msgstr "" -#: templates/music.php:36 +#: templates/music.php:37 msgid "Title" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index d35142e50c6..2eb346eb414 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-08-13 05:10+0200\n" +"POT-Creation-Date: 2011-08-13 12:41+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 93b118bf77f..4105886552f 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,7 +1,12 @@ "Erreur d'authentification", +"OpenID Changed" => "Identifiant OpenID changé avec succès", "Invalid request" => "Requète invalide", "Language changed" => "Langue changée avec succès", +"Ask a question" => "Poser une question", +"Select an App" => "Sélectionner une Application", +"-licensed" => "sous licence", +"by" => "par", "Account information" => "Informations sur le compte", "You're currently using" => "Vous utilisez actuellement", "of your" => "de votre espace de stockage de", @@ -11,5 +16,10 @@ "Old password" => "Ancien mot de passe", "New password" => "Nouveau mot de passe :", "show" => "Afficher", -"Language" => "Langue" +"Language" => "Langue", +"Name" => "Nom", +"Password" => "Mot de passe", +"Groups" => "Groupes", +"Create" => "Créer", +"Remove" => "Supprimer" ); From 7474c907dc715e790145e4577306c9936f60fa1d Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sat, 13 Aug 2011 15:32:00 +0200 Subject: [PATCH 12/27] CSS update, Personal looks better now --- core/css/styles.css | 39 +++++++++++++++++---------------- files/css/files.css | 1 - settings/templates/personal.php | 38 +++++++++++++------------------- 3 files changed, 35 insertions(+), 43 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index 1d7ac43eb0b..e87f5975ebe 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -9,9 +9,9 @@ table { border-collapse:separate; border-spacing:0; white-space:nowrap; } caption, th, td { text-align:left; font-weight:normal; } table, td, th { vertical-align:middle; } a { border:0; color:#000; text-decoration:none;} -a, a *, input, input *, select, .button span, li { cursor:pointer; } +a, a *, input, input *, select, .button span, li, label { cursor:pointer; } ul { list-style:none; } -body { background:#fefefe; font:normal 80%/1.6em "Lucida Grande", Arial, Verdana, sans-serif; color:#000; margin-bottom:2em; } +body { background:#fefefe; font:normal .8em/1.6em "Lucida Grande", Arial, Verdana, sans-serif; color:#000; } /* HEADERS */ @@ -28,16 +28,15 @@ background: linear-gradient(top, #35537a 0%,#1d2d42 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d42',GradientType=0 ); /* IE6-9 */ } #owncloud { float:left; } -h1 { margin:1em 3em 1em 0; border-bottom:1px solid #666; text-transform:uppercase; font-weight:normal; font-style:italic; color:#666; } /* INPUTS */ input[type="text"], input[type="password"] { cursor:text; } -input, select, .button { font-size:1em; width:10em; margin:.3em; padding:.6em .5em .4em; background:#fff; color:#333; border:1px solid #ddd; -moz-box-shadow:0 1px 1px #fff, 0 2px 0 #bbb inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset; box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } +input, select, .button, #quota { font-size:1em; width:10em; margin:.3em; padding:.6em .5em .4em; background:#fff; color:#333; border:1px solid #ddd; -moz-box-shadow:0 1px 1px #fff, 0 2px 0 #bbb inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset; box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } input[type="text"], input[type="password"] { background:#f8f8f8; color:#555; cursor:text; } input[type="text"]:hover, input[type="text"]:focus, input[type="password"]:hover, input[type="password"]:focus { background:#fff; color:#333; } -input[type="submit"], input[type="button"], .button { width:auto; padding:.4em; border:1px solid #ddd; font-weight:bold; cursor:pointer; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } +input[type="submit"], input[type="button"], .button, #quota { width:auto; padding:.4em; border:1px solid #ddd; font-weight:bold; cursor:pointer; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus, .button:hover { background:#fff; color:#333; } input[type="checkbox"] { width:auto; } @@ -49,20 +48,16 @@ radius:1em; border-radius:1em; } input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #cfc inset; -webkit-box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #cfc inset; box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #cfc inset; } input[type="submit"].highlight{ background:#ffc100; border:1px solid #db0; text-shadow:#ffeedd 0 1px 0; -moz-box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #ffeedd inset; -webkit-box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #ffeedd inset; box-shadow:0 1px 1px #f8f8f8, 0 1px 1px #ffeedd inset; } -form label { cursor:pointer; } -#body-settings fieldset { padding:1em; width:40em; margin:1em; -border:1px solid #ddd; font-weight:bold; background:#f2f2f2; color:#555; text-shadow:#fff 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;} -legend { padding:.2em; font-size:1.2em; } -.template{display:none;} /* CONTENT ------------------------------------------------------------------ */ #controls { width:100%; top:3.5em; height:2.8em; margin:0; background:#f7f7f7; border-bottom:1px solid #eee; position:fixed; z-index:50; -moz-box-shadow:0 -3px 7px #000; -webkit-box-shadow:0 -3px 7px #000; box-shadow:0 -3px 7px #000; } #content { margin:3.5em 0 0 12.5em; padding-bottom:10em; } #leftcontent { position:absolute; top:6.4em; width:20em; background:#f8f8f8; height:100%; border-right:1px solid #ddd; } #leftcontent li { padding:.3em .8em; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; } -#leftcontent li:hover { background:#eee; } +#leftcontent li:hover, #leftcontent li:active { background:#eee; } #rightcontent { position:absolute; top:6.4em; left:33em; } + /* LOG IN & INSTALLATION ------------------------------------------------------------ */ #body-login { background:#ddd; } #body-login p.info { width:16em; margin:2em auto; padding:1em; background:#eee; -moz-box-shadow:0 1px 0 #bbb inset; -webkit-box-shadow:0 1px 0 #bbb inset; box-shadow:0 1px 0 #bbb inset; -moz-border-radius:1em; -webkit-border-radius:1em; border-radius:1em; } @@ -94,15 +89,21 @@ legend { padding:.2em; font-size:1.2em; } #expand+span { position:relative; bottom:.4em; left:.2em; font-size:1.2em; color:#666; text-shadow:#f8f8f8 0 1px 0; } #logout { position:absolute; right:0; top:0; padding:1.2em 2em .55em 1.2em; } -/* USER SETTINGS ------------------------------------------------------------ */ -#quota_indicator { margin:0 4em 1em 0; padding:0; border:1px solid #ccc; border-radius:10px; -webkit-border-radius:10px; -moz-border-radius:10px; } -#quota_indicator div { background:#76a9ea; border-radius:10px; -webkit-border-radius:10px; -moz-border-radius:10px; } -li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; } -.hidden{ display:none; } -#notification{ z-index:101; cursor:pointer; background-color:#fc4; border:0; padding:0 .7em .3em; display:block; position:fixed; left:50%; top:0; --moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; --moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; } +/* VARIOUS REUSABLE SELECTORS */ +.hidden { display:none; } + +#notification { z-index:101; cursor:pointer; background-color:#fc4; border:0; padding:0 .7em .3em; display:block; position:fixed; left:50%; top:0; -moz-border-radius-bottomleft:1em; -webkit-border-bottom-left-radius:1em; border-bottom-left-radius:1em; -moz-border-radius-bottomright:1em; -webkit-border-bottom-right-radius:1em; border-bottom-right-radius:1em; } .action, .selectedActions a, #logout { opacity:.3; -webkit-transition:opacity 500ms; -moz-transition:opacity 500ms; -o-transition:opacity 500ms; transition:opacity 500ms; } .action:hover, .selectedActions a:hover, #logout:hover { opacity:1; } + +table tr { -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; } +tbody tr:hover, tr:active { background-color:#f8f8f8; } + +#body-settings .personalblock { padding:.5em 1em; margin:1em; border:1px solid #eee; font-weight:bold; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;} +#body-settings div.personalblock:first-child { position:relative;margin-top:4.5em; padding:0; } + +#quota div { padding:.6em 1em; background:#e6e6e6; font-weight:normal; white-space:nowrap; } + +li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; } diff --git a/files/css/files.css b/files/css/files.css index af860d60b9a..597658b5403 100644 --- a/files/css/files.css +++ b/files/css/files.css @@ -26,7 +26,6 @@ /* FILE TABLE */ span#emptyfolder { position:absolute; margin:10em 0 0 10em; font-size:1.5em; font-weight:bold; color:#888; text-shadow:#fff 0 1px 0; } table { position:relative; top:37px; width:100%; } -table tr { -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; } tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; height:1em; } tbody tr.selected { background-color:#eee; } tbody a { color:#000; } diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 48c3f542018..c4ecd73e207 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -1,14 +1,9 @@ -
    -
    - t( 'Account information' );?> -
     
    -

    t( 'You\'re currently using' );?> % () t( 'of your' );?> t( 'space' );?>.

    -
    - +
    +

    t( 'You\'re currently using' );?> % () t( 'of your' );?> t( 'space' );?>.

    +
    -
    - t( 'Change Password' );?> +
    t( 'Your password got changed');?>
    @@ -18,18 +13,15 @@
    -
    -
    - t( 'Language' );?> - - -
    - +
    + + - + +
    From 6b2862fcfe900d796ed6a6f6d0aa44dfc926e2c0 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sat, 13 Aug 2011 16:00:10 +0200 Subject: [PATCH 13/27] various CSS fixes --- AUTHORS | 6 ------ core/css/multiselect.css | 4 ++-- core/css/styles.css | 6 +++--- settings/templates/personal.php | 6 +++--- 4 files changed, 8 insertions(+), 14 deletions(-) diff --git a/AUTHORS b/AUTHORS index 5f992b932ef..02439884d2f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -4,13 +4,7 @@ ownCloud is written by: Jakob Sack Jan-Christoph Borchardt Michael Gapczynski - François Kubler - Kunal Ghosh - Antonio José Gallo Sánchez Arthur Schiwon - Kamil Domański - Aldo Giambelluca - Dominik Schmidt … With help from many libraries and frameworks including: diff --git a/core/css/multiselect.css b/core/css/multiselect.css index d78dede95c0..22e5098d3bf 100644 --- a/core/css/multiselect.css +++ b/core/css/multiselect.css @@ -1,6 +1,6 @@ -ul.multiselectoptions { z-index:49; position:absolute; background-color:#fff; padding-top:.5em; border-bottom-left-radius:.5em; border-bottom-right-radius:.5em; border:1px solid #ddd; border-top:none; } +ul.multiselectoptions { z-index:49; position:absolute; background-color:#fff; padding-top:.5em; border:1px solid #ddd; border-top:none; -moz-border-radius-bottomleft:.5em; -webkit-border-bottom-left-radius:.5em; border-bottom-left-radius:.5em; -moz-border-radius-bottomright:.5em; -webkit-border-bottom-right-radius:.5em; border-bottom-right-radius:.5em; -moz-box-shadow:0 1px 1px #ddd; -webkit-box-shadow:0 1px 1px #ddd; box-shadow:0 1px 1px #ddd; } div.multiselect { padding-right:.6em; display:inline; position:relative; display:inline-block } div.multiselect.active { background-color:#fff; border-bottom:none; border-bottom-left-radius:0; border-bottom-right-radius:0; z-index:50; position:relative } -div.multiselect>span:first-child { margin-right:2em; } +div.multiselect>span:first-child { margin-right:2em; float:left; } div.multiselect>span:last-child { float:right; position:relative } ul.multiselectoptions input.new{ margin:0; padding-bottom:0.2em; padding-top:0.2em; border-top-left-radius:0; border-top-right-radius:0; } diff --git a/core/css/styles.css b/core/css/styles.css index e87f5975ebe..1be25999390 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -2,7 +2,7 @@ This file is licensed under the Affero General Public License version 3 or later. See the COPYING-README file. */ -html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section { margin:0; padding:0; border:0; outline:0; font-weight:inherit; font-style:inherit; font-size:100%; font-family:inherit; vertical-align:baseline; cursor:default; } +html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section { margin:0; padding:0; border:0; outline:0; font-weight:inherit; font-size:100%; font-family:inherit; vertical-align:baseline; cursor:default; } article, aside, dialog, figure, footer, header, hgroup, nav, section { display:block; } body { line-height:1.5; } table { border-collapse:separate; border-spacing:0; white-space:nowrap; } @@ -101,8 +101,8 @@ input[type="submit"].highlight{ background:#ffc100; border:1px solid #db0; text- table tr { -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; } tbody tr:hover, tr:active { background-color:#f8f8f8; } -#body-settings .personalblock { padding:.5em 1em; margin:1em; border:1px solid #eee; font-weight:bold; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;} -#body-settings div.personalblock:first-child { position:relative;margin-top:4.5em; padding:0; } +#body-settings .personalblock { padding:.5em 1em; margin:1em; border:1px solid #eee; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;} +#body-settings div.personalblock:first-child { position:relative; margin-top:4.5em; padding:0; } #quota div { padding:.6em 1em; background:#e6e6e6; font-weight:normal; white-space:nowrap; } diff --git a/settings/templates/personal.php b/settings/templates/personal.php index c4ecd73e207..6ea60e54c52 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -1,15 +1,15 @@
    -

    t( 'You\'re currently using' );?> % () t( 'of your' );?> t( 'space' );?>.

    +

    t( 'You use' );?> t( 'of the available' );?>

    t( 'Your password got changed');?>
    - + - +
    From 595329a8a0fbcf6e2ce0a8ee43e61c8c6335aab7 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sat, 13 Aug 2011 16:34:40 +0200 Subject: [PATCH 14/27] some player styling --- apps/media/css/music.css | 12 ++++++------ apps/media/css/player.css | 27 ++++++++++++++++----------- apps/media/js/player.js | 3 +++ apps/media/templates/music.php | 17 +++++++++-------- core/css/styles.css | 7 ++++--- 5 files changed, 38 insertions(+), 28 deletions(-) diff --git a/apps/media/css/music.css b/apps/media/css/music.css index eef300c63fa..f8e41064fd8 100644 --- a/apps/media/css/music.css +++ b/apps/media/css/music.css @@ -1,8 +1,8 @@ -#folderlist li { margin-bottom:10px; } -#folderlist button.prettybutton { font-size:1em; width:10ex; } +#folderlist li { margin-bottom:1em; } +#folderlist button.prettybutton { font-size:1em; width:10em; } li button.right.prettybutton { font-size:1em; } -#collection { padding-top:1em; position:relative; width:70ex; float:left; } -#collection li.album,#collection li.song { margin-left:3ex; } +#collection { padding-top:1em; position:relative; width:70em; float:left; } +#collection li.album,#collection li.song { margin-left:3em; } #leftcontent img.remove { display:none; float:right; cursor:pointer; } #leftcontent li:hover img.remove { display:inline; } #collection li button { float:right; } @@ -10,7 +10,7 @@ li button.right.prettybutton { font-size:1em; } .template { display:none; } #collection li { padding-right:10px; } -#searchresults input.play, #searchresults input.add { float:right; height:16px; width:16px; } +#searchresults input.play, #searchresults input.add { float:left; height:1em; width:1em; } #collection tr.collapsed td.album, #collection tr.collapsed td.title { color:#ddd; } a.expander { float:right; display:block; } -tr.active { background-color:#ccc; } +tr.active { background-color:#eee; } diff --git a/apps/media/css/player.css b/apps/media/css/player.css index 0074bf9b9a4..98a76e82f0d 100644 --- a/apps/media/css/player.css +++ b/apps/media/css/player.css @@ -1,11 +1,16 @@ -#controls ul.jp-controls{ padding:0; } -#controls ul.jp-controls li{ display:inline; } -div.jp-progress{position:absolute;overflow:hidden;background-color:#293b51;top:1em;left:10em;width:15em;height:1.2em;} -div.jp-seek-bar{background:url("../img/jplayer.blue.monday.png") 0 -202px repeat-x;width:0;height:100%;cursor:pointer;} -div.jp-play-bar{background:url("../img/jplayer.blue.monday.png") 0 -218px repeat-x;width:0;height:100%;} -div.jp-seeking-bg{background:url("../img/pbar-ani.gif");} -a.jp-mute,a.jp-unmute{height:1.2em;width:1.5em;top:1em;left:26em;} -div.jp-volume-bar{position:absolute;overflow:hidden;background:url("../img/jplayer.blue.monday.png") 0 -250px repeat-x;width:4em;height:0.4em;cursor:pointer;top:1.3em;left:28em;} -div.jp-volume-bar-value{background:url("../img/jplayer.blue.monday.png") 0 -256px repeat-x;width:0;height:0.4em;} -div.jp-current-time,div.jp-duration{position:absolute;font-size:.64em;font-style:oblique;top:1em;left:16.8em;width:22em;} -div.jp-duration{text-align:right;} +#controls ul.jp-controls { padding:0; } +#controls ul.jp-controls li { display:inline; } +#controls ul.jp-controls li a { position:absolute; padding:.8em 1em; } +a.jp-play, a.jp-pause { left:2.5em; } +a.jp-next { left:5em; } + +div.jp-progress { position:absolute; overflow:hidden; top:.5em; left:8em; width:15em; height:1.2em; padding:0; } +div.jp-seek-bar { background:#eee; width:0; height:100%; cursor:pointer; } +div.jp-play-bar { background:#ccc; width:0; height:100%; } +div.jp-seeking-bg { background:url("../img/pbar-ani.gif"); } +div.jp-current-time,div.jp-duration { position:absolute; font-size:.64em; font-style:oblique; top:1em; left:13.5em; width:22em; } +div.jp-duration { text-align:right; } + +a.jp-mute,a.jp-unmute { left:24em; } +div.jp-volume-bar { position:absolute; overflow:hidden; background:#eee; width:4em; height:0.4em; cursor:pointer; top:1.3em; left:27em; } +div.jp-volume-bar-value { background:#ccc; width:0; height:0.4em; } diff --git a/apps/media/js/player.js b/apps/media/js/player.js index d37196a89f5..0b0502c7780 100644 --- a/apps/media/js/player.js +++ b/apps/media/js/player.js @@ -204,4 +204,7 @@ $(document).ready(function(){ $(window).bind('beforeunload', function (){ PlayList.save(); }); + + $('jp-previous').tipsy({gravity:'n', fade:true, live:true}); + $('jp-next').tipsy({gravity:'n', fade:true, live:true}); }) diff --git a/apps/media/templates/music.php b/apps/media/templates/music.php index 9c31ddd288a..b469b025c7b 100644 --- a/apps/media/templates/music.php +++ b/apps/media/templates/music.php @@ -1,22 +1,23 @@
    + + - - +
    diff --git a/core/css/styles.css b/core/css/styles.css index 1be25999390..f9b94862f31 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -32,11 +32,11 @@ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', end /* INPUTS */ input[type="text"], input[type="password"] { cursor:text; } -input, select, .button, #quota { font-size:1em; width:10em; margin:.3em; padding:.6em .5em .4em; background:#fff; color:#333; border:1px solid #ddd; -moz-box-shadow:0 1px 1px #fff, 0 2px 0 #bbb inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset; box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } +input, select, .button, #quota, div.jp-progress { font-size:1em; width:10em; margin:.3em; padding:.6em .5em .4em; background:#fff; color:#333; border:1px solid #ddd; -moz-box-shadow:0 1px 1px #fff, 0 2px 0 #bbb inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset; box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } input[type="text"], input[type="password"] { background:#f8f8f8; color:#555; cursor:text; } input[type="text"]:hover, input[type="text"]:focus, input[type="password"]:hover, input[type="password"]:focus { background:#fff; color:#333; } -input[type="submit"], input[type="button"], .button, #quota { width:auto; padding:.4em; border:1px solid #ddd; font-weight:bold; cursor:pointer; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } +input[type="submit"], input[type="button"], .button, #quota, div.jp-progress { width:auto; padding:.4em; border:1px solid #ddd; font-weight:bold; cursor:pointer; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, input[type="button"]:focus, .button:hover { background:#fff; color:#333; } input[type="checkbox"] { width:auto; } @@ -104,6 +104,7 @@ tbody tr:hover, tr:active { background-color:#f8f8f8; } #body-settings .personalblock { padding:.5em 1em; margin:1em; border:1px solid #eee; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;} #body-settings div.personalblock:first-child { position:relative; margin-top:4.5em; padding:0; } -#quota div { padding:.6em 1em; background:#e6e6e6; font-weight:normal; white-space:nowrap; } +#quota div, div.jp-play-bar, div.jp-seek-bar { padding:.6em 1em; background:#e6e6e6; font-weight:normal; white-space:nowrap; } +div.jp-play-bar, div.jp-seek-bar { padding:0; } li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; } From 1f98f5cfdafbff28ca4810ba4d79df902c177615 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sat, 13 Aug 2011 16:54:54 +0200 Subject: [PATCH 15/27] wayyy better position for file upload and new folder --- files/css/files.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/files/css/files.css b/files/css/files.css index 597658b5403..f9d888ef4a0 100644 --- a/files/css/files.css +++ b/files/css/files.css @@ -3,17 +3,17 @@ See the COPYING-README file. */ /* FILE MENU */ -.actions { padding:.6em; float:right; margin-right:13em; } -.actions input { margin:0; padding:.3em; } +.actions { padding:.3em; float:left; } +.actions input { margin:0; } #file_menu { right:0; position:absolute; top:0; } #file_menu a { display:block; float:left; background-image:none; text-decoration:none; } .file_upload_form, #file_newfolder_form { display:inline; float: left;} #fileSelector, #file_upload_submit, #file_newfolder_submit { display:none; } -.file_upload_wrapper, #file_newfolder_name { background-repeat:no-repeat; background-position:.5em .3em; padding-left:2em; } -.file_upload_wrapper { font-weight:bold; display:-moz-inline-box; /* fallback for older firefox versions*/ display:inline-block; padding-left:0; overflow:hidden; position:relative; margin-right:1.5em;} +.file_upload_wrapper, #file_newfolder_name { background-repeat:no-repeat; background-position:.5em .5em; padding-left:2em; } +.file_upload_wrapper { font-weight:bold; display:-moz-inline-box; /* fallback for older firefox versions*/ display:inline-block; padding-left:0; overflow:hidden; position:relative; margin:.1em 1em;} .file_upload_wrapper .file_upload_button_wrapper { position:absolute; top:0; left:0; width:100%; height:100%; cursor:pointer; z-index:1000; } -#file_newfolder_name { background-image:url('../../core/img/places/folder.svg'); font-weight:bold; width:8em; } +#file_newfolder_name { background-image:url('../../core/img/places/folder.svg'); font-weight:normal; width:6em; } .file_upload_start, .file_upload_filename { font-size:1em; } #file_newfolder_submit, #file_upload_submit { width:3em; } .file_upload_target { display:none; } From 44b59e38230d7d33a8f21aa3f9bc25381966f790 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sat, 13 Aug 2011 17:13:04 +0200 Subject: [PATCH 16/27] EVERYTHING MUST FADE --- core/css/styles.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/css/styles.css b/core/css/styles.css index f9b94862f31..1088fdc2b09 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -81,7 +81,7 @@ input[type="submit"].highlight{ background:#ffc100; border:1px solid #db0; text- /* NAVIGATION ------------------------------------------------------------- */ #navigation { position:fixed; top:3.5em; float:left; width:12.5em; padding:0; z-index:75; height:100%; background:#eee; border-right: 1px #ccc solid; -moz-box-shadow: -3px 0 7px #000; -webkit-box-shadow: -3px 0 7px #000; box-shadow: -3px 0 7px #000; } -#navigation a { display:block; padding:.6em .5em .4em 2.5em; background:#eee 1em center no-repeat; border-bottom:1px solid #ddd; border-top:1px solid #fff; text-decoration:none; font-size:1.2em; color:#666; text-shadow:#f8f8f8 0 1px 0; } +#navigation a { display:block; padding:.6em .5em .4em 2.5em; background:#eee 1em center no-repeat; border-bottom:1px solid #ddd; border-top:1px solid #fff; text-decoration:none; font-size:1.2em; color:#666; text-shadow:#f8f8f8 0 1px 0; -webkit-transition:background 500ms; -moz-transition:background 500ms; -o-transition:background 500ms; transition:background 500ms; } #navigation a.active, #navigation a:hover, #navigation a:focus { background-color:#dbdbdb; border-top:1px solid #d4d4d4; border-bottom:1px solid #ccc; color:#333; } #navigation a.active { background-color:#ddd; } #navigation #settings { position:absolute; bottom:3.5em; width:100%; } @@ -101,7 +101,7 @@ input[type="submit"].highlight{ background:#ffc100; border:1px solid #db0; text- table tr { -webkit-transition:background-color 500ms; -moz-transition:background-color 500ms; -o-transition:background-color 500ms; transition:background-color 500ms; } tbody tr:hover, tr:active { background-color:#f8f8f8; } -#body-settings .personalblock { padding:.5em 1em; margin:1em; border:1px solid #eee; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 1px #fff inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;} +#body-settings .personalblock { padding:.5em 1em; margin:1em; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em;} #body-settings div.personalblock:first-child { position:relative; margin-top:4.5em; padding:0; } #quota div, div.jp-play-bar, div.jp-seek-bar { padding:.6em 1em; background:#e6e6e6; font-weight:normal; white-space:nowrap; } From ee8e6d5442f1b3c5de774934ce366442afd706c5 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 13 Aug 2011 17:41:34 +0200 Subject: [PATCH 17/27] DONT always scan the collection, I would like to keep some cpu cycles to actually use my pc --- apps/media/js/collection.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/media/js/collection.js b/apps/media/js/collection.js index 15c83b86229..98d21b236e0 100644 --- a/apps/media/js/collection.js +++ b/apps/media/js/collection.js @@ -34,7 +34,7 @@ Collection={ } if(collection.length==0){ $('#scan input.start').val(t('media','Scan Collection')); - $('#plugins a[href="#collection"]').trigger('click'); + $('#scan input.start').click(); } } @@ -244,12 +244,12 @@ $(document).ready(function(){ Collection.parent=$('#collection'); Collection.load(); Collection.parent.hide(); - //$('#scan input.start').click(function(){ + $('#scan input.start').click(function(){ $('#scan input.start').hide(); $('#scan input.stop').show(); $('#scan input.stop').click(function(){ Scanner.toggle(); }); Scanner.scanCollection(); - //}); + }); }); From 6f37f2917dafc64ecc4619445ecaba9762a88814 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sat, 13 Aug 2011 17:53:31 +0200 Subject: [PATCH 18/27] fix media player controlls not showing --- apps/media/templates/music.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/media/templates/music.php b/apps/media/templates/music.php index b469b025c7b..3cbb1c50a95 100644 --- a/apps/media/templates/music.php +++ b/apps/media/templates/music.php @@ -1,11 +1,11 @@
    From f2a21398d791beda3e1de0a5c4c12a141e70c795 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 14 Aug 2011 11:09:51 +0200 Subject: [PATCH 22/27] more info in personal, WebDAV, OpenID --- apps/user_openid/templates/settings.php | 9 +++--- core/js/js.js | 1 + settings/templates/personal.php | 41 +++++++++++++++---------- 3 files changed, 30 insertions(+), 21 deletions(-) diff --git a/apps/user_openid/templates/settings.php b/apps/user_openid/templates/settings.php index fff1eff09e0..add3345f7b1 100644 --- a/apps/user_openid/templates/settings.php +++ b/apps/user_openid/templates/settings.php @@ -1,6 +1,7 @@
    -
    - t( 'OpenID' );?> - +
    +

    OpenID

    + +
    - \ No newline at end of file + diff --git a/core/js/js.js b/core/js/js.js index 63c88bb4adf..cddf95a8435 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -302,6 +302,7 @@ $(document).ready(function(){ if($('.action').attr('title')) $('.action').tipsy({gravity:'s', fade:true, live:true}); $('.selectedActions a').tipsy({gravity:'n', fade:true, live:true}); $('.selectedActions a.delete').tipsy({gravity: 'ne', fade:true, live:true}); + $('input#identity').tipsy({gravity:'w', fade:true}); }); if (!Array.prototype.map){ diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 6ea60e54c52..02f66c9a131 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -1,27 +1,34 @@
    -

    t( 'You use' );?> t( 'of the available' );?>

    +

    t('You use');?> t('of the available');?>

    -
    t( 'Your password got changed');?>
    +
    t('Your password got changed');?>
    - - - - + + + +
    -
    - - +
    +
    + + + t('Help translating');?> +
    + + +

    + WebDAV +

    - -
    + From 6e30ade0b34224f92ecf4bc7c95cc319006ee4b8 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 14 Aug 2011 14:55:43 +0200 Subject: [PATCH 23/27] updated tipsy, tooltips finally work everywhere, thanks icewind --- core/css/jquery-tipsy.css | 32 +++- core/js/jquery-tipsy.js | 279 ++++++++++++++++++++++++++--------- core/js/js.js | 14 +- files/js/files.js | 2 +- settings/css/settings.css | 2 +- settings/js/users.js | 2 +- settings/templates/users.php | 4 +- 7 files changed, 246 insertions(+), 89 deletions(-) diff --git a/core/css/jquery-tipsy.css b/core/css/jquery-tipsy.css index 5075f41c9f6..957385a269f 100644 --- a/core/css/jquery-tipsy.css +++ b/core/css/jquery-tipsy.css @@ -1,7 +1,25 @@ -.tipsy { padding: 5px; font-size: 10px; opacity: 0.8; filter: alpha(opacity=80); background-repeat: no-repeat; background-image: url(../img/jquery-tipsy.gif); } - .tipsy-inner { padding: 5px 8px 4px 8px; background-color: black; color: white; max-width: 200px; text-align: center; } - .tipsy-inner { -moz-border-radius:3px; -webkit-border-radius:3px; } - .tipsy-north { background-position: top center; } - .tipsy-south { background-position: bottom center; } - .tipsy-east { background-position: right center; } - .tipsy-west { background-position: left center; } +.tipsy { font-size:10px; position:absolute; padding:5px; z-index:100000; } +.tipsy-inner { background-color:#000; color:#FFF; max-width:200px; padding:5px 8px 4px 8px; text-align:center; } + +/* Rounded corners */ +.tipsy-inner { border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; } + +/* Uncomment for shadow */ +/*.tipsy-inner { box-shadow:0 0 5px #000000; -webkit-box-shadow:0 0 5px #000000; -moz-box-shadow:0 0 5px #000000; }*/ + +.tipsy-arrow { position:absolute; width:0; height:0; border:5px solid transparent; } + +/* Rules to colour arrows */ +.tipsy-arrow-n { border-bottom-color:#000; } +.tipsy-arrow-s { border-top-color:#000; } +.tipsy-arrow-e { border-left-color:#000; } +.tipsy-arrow-w { border-right-color:#000; } + +.tipsy-n .tipsy-arrow, .tipsy-nw .tipsy-arrow, .tipsy-ne .tipsy-arrow { top:0; border-top:none; } +.tipsy-s .tipsy-arrow, .tipsy-sw .tipsy-arrow, .tipsy-se .tipsy-arrow { bottom:0; border-bottom:none; } +.tipsy-n .tipsy-arrow, .tipsy-s .tipsy-arrow { left:50%; margin-left:-5px; } +.tipsy-nw .tipsy-arrow, .tipsy-sw .tipsy-arrow { left:10px; } +.tipsy-ne .tipsy-arrow, .tipsy-se .tipsy-arrow { right:10px; } +.tipsy-e .tipsy-arrow, .tipsy-w .tipsy-arrow { top:50%; margin-top:-5px; } +.tipsy-e .tipsy-arrow { right:0; border-right:none; } +.tipsy-w .tipsy-arrow { left:0; border-left:none; } diff --git a/core/js/jquery-tipsy.js b/core/js/jquery-tipsy.js index 58d834771ff..9567ed3bacc 100644 --- a/core/js/jquery-tipsy.js +++ b/core/js/jquery-tipsy.js @@ -1,100 +1,202 @@ -// tipsy - Facebook-style tooltip plugin for jQuery -// (c) 2008-2009 Jason Frame (jason@onehackoranother.com) -// Released under The MIT License. +// tipsy, facebook style tooltips for jquery +// version 1.0.0a +// (c) 2008-2010 jason frame [jason@onehackoranother.com] +// released under the MIT license (function($) { - $.fn.tipsy = function(options) { - - options = $.extend({}, $.fn.tipsy.defaults, options); - - return this.each(function() { - - var opts = $.fn.tipsy.elementOptions(this, options); - - $(this).hover(function() { - - $.data(this, 'cancel.tipsy', true); - - var tip = $.data(this, 'active.tipsy'); - if (!tip) { - tip = $('
    '); - tip.css({position: 'absolute', zIndex: 100000}); - $.data(this, 'active.tipsy', tip); - } - - if ($(this).attr('title') || typeof($(this).attr('original-title')) != 'string') { - $(this).attr('original-title', $(this).attr('title') || '').removeAttr('title'); - } - - var title; - if (typeof opts.title == 'string') { - title = $(this).attr(opts.title == 'title' ? 'original-title' : opts.title); - } else if (typeof opts.title == 'function') { - title = opts.title.call(this); - } - - tip.find('.tipsy-inner')[opts.html ? 'html' : 'text'](title || opts.fallback); - - var pos = $.extend({}, $(this).offset(), {width: this.offsetWidth, height: this.offsetHeight}); - tip.get(0).className = 'tipsy'; // reset classname in case of dynamic gravity - tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).appendTo(document.body); - var actualWidth = tip[0].offsetWidth, actualHeight = tip[0].offsetHeight; - var gravity = (typeof opts.gravity == 'function') ? opts.gravity.call(this) : opts.gravity; - + + function maybeCall(thing, ctx) { + return (typeof thing == 'function') ? (thing.call(ctx)) : thing; + }; + + function Tipsy(element, options) { + this.$element = $(element); + this.options = options; + this.enabled = true; + this.fixTitle(); + }; + + Tipsy.prototype = { + show: function() { + var title = this.getTitle(); + if (title && this.enabled) { + var $tip = this.tip(); + + $tip.find('.tipsy-inner')[this.options.html ? 'html' : 'text'](title); + $tip[0].className = 'tipsy'; // reset classname in case of dynamic gravity + $tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).prependTo(document.body); + + var pos = $.extend({}, this.$element.offset(), { + width: this.$element[0].offsetWidth, + height: this.$element[0].offsetHeight + }); + + var actualWidth = $tip[0].offsetWidth, + actualHeight = $tip[0].offsetHeight, + gravity = maybeCall(this.options.gravity, this.$element[0]); + + var tp; switch (gravity.charAt(0)) { case 'n': - tip.css({top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}).addClass('tipsy-north'); + tp = {top: pos.top + pos.height + this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2}; break; case 's': - tip.css({top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}).addClass('tipsy-south'); + tp = {top: pos.top - actualHeight - this.options.offset, left: pos.left + pos.width / 2 - actualWidth / 2}; break; case 'e': - tip.css({top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}).addClass('tipsy-east'); + tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth - this.options.offset}; break; case 'w': - tip.css({top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}).addClass('tipsy-west'); + tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width + this.options.offset}; break; } - - if (opts.fade) { - tip.css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: 0.8}); - } else { - tip.css({visibility: 'visible'}); - } - - }, function() { - $.data(this, 'cancel.tipsy', false); - var self = this; - setTimeout(function() { - if ($.data(this, 'cancel.tipsy')) return; - var tip = $.data(self, 'active.tipsy'); - if (opts.fade) { - tip.stop().fadeOut(function() { $(this).remove(); }); + + if (gravity.length == 2) { + if (gravity.charAt(1) == 'w') { + tp.left = pos.left + pos.width / 2 - 15; } else { - tip.remove(); + tp.left = pos.left + pos.width / 2 - actualWidth + 15; } - }, 100); - - }); - - }); + } + + $tip.css(tp).addClass('tipsy-' + gravity); + $tip.find('.tipsy-arrow')[0].className = 'tipsy-arrow tipsy-arrow-' + gravity.charAt(0); + if (this.options.className) { + $tip.addClass(maybeCall(this.options.className, this.$element[0])); + } + + if (this.options.fade) { + $tip.stop().css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: this.options.opacity}); + } else { + $tip.css({visibility: 'visible', opacity: this.options.opacity}); + } + } + }, + + hide: function() { + if (this.options.fade) { + this.tip().stop().fadeOut(function() { $(this).remove(); }); + } else { + this.tip().remove(); + } + }, + + fixTitle: function() { + var $e = this.$element; + if ($e.attr('title') || typeof($e.attr('original-title')) != 'string') { + $e.attr('original-title', $e.attr('title') || '').removeAttr('title'); + } + }, + + getTitle: function() { + var title, $e = this.$element, o = this.options; + this.fixTitle(); + var title, o = this.options; + if (typeof o.title == 'string') { + title = $e.attr(o.title == 'title' ? 'original-title' : o.title); + } else if (typeof o.title == 'function') { + title = o.title.call($e[0]); + } + title = ('' + title).replace(/(^\s*|\s*$)/, ""); + return title || o.fallback; + }, + tip: function() { + if (!this.$tip) { + this.$tip = $('
    ').html('
    '); + } + return this.$tip; + }, + + validate: function() { + if (!this.$element[0].parentNode) { + this.hide(); + this.$element = null; + this.options = null; + } + }, + + enable: function() { this.enabled = true; }, + disable: function() { this.enabled = false; }, + toggleEnabled: function() { this.enabled = !this.enabled; } }; - // Overwrite this method to provide options on a per-element basis. - // For example, you could store the gravity in a 'tipsy-gravity' attribute: - // return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' }); - // (remember - do not modify 'options' in place!) - $.fn.tipsy.elementOptions = function(ele, options) { - return $.metadata ? $.extend({}, options, $(ele).metadata()) : options; + $.fn.tipsy = function(options) { + + if (options === true) { + return this.data('tipsy'); + } else if (typeof options == 'string') { + var tipsy = this.data('tipsy'); + if (tipsy) tipsy[options](); + return this; + } + + options = $.extend({}, $.fn.tipsy.defaults, options); + + function get(ele) { + var tipsy = $.data(ele, 'tipsy'); + if (!tipsy) { + tipsy = new Tipsy(ele, $.fn.tipsy.elementOptions(ele, options)); + $.data(ele, 'tipsy', tipsy); + } + return tipsy; + } + + function enter() { + var tipsy = get(this); + tipsy.hoverState = 'in'; + if (options.delayIn == 0) { + tipsy.show(); + } else { + tipsy.fixTitle(); + setTimeout(function() { if (tipsy.hoverState == 'in') tipsy.show(); }, options.delayIn); + } + }; + + function leave() { + var tipsy = get(this); + tipsy.hoverState = 'out'; + if (options.delayOut == 0) { + tipsy.hide(); + } else { + setTimeout(function() { if (tipsy.hoverState == 'out') tipsy.hide(); }, options.delayOut); + } + }; + + if (!options.live) this.each(function() { get(this); }); + + if (options.trigger != 'manual') { + var binder = options.live ? 'live' : 'bind', + eventIn = options.trigger == 'hover' ? 'mouseenter' : 'focus', + eventOut = options.trigger == 'hover' ? 'mouseleave' : 'blur'; + this[binder](eventIn, enter)[binder](eventOut, leave); + } + + return this; + }; $.fn.tipsy.defaults = { + className: null, + delayIn: 0, + delayOut: 0, fade: false, fallback: '', gravity: 'n', html: false, - title: 'title' + live: false, + offset: 0, + opacity: 0.8, + title: 'title', + trigger: 'hover' + }; + + // Overwrite this method to provide options on a per-element basis. + // For example, you could store the gravity in a 'tipsy-gravity' attribute: + // return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' }); + // (remember - do not modify 'options' in place!) + $.fn.tipsy.elementOptions = function(ele, options) { + return $.metadata ? $.extend({}, options, $(ele).metadata()) : options; }; $.fn.tipsy.autoNS = function() { @@ -105,4 +207,35 @@ return $(this).offset().left > ($(document).scrollLeft() + $(window).width() / 2) ? 'e' : 'w'; }; + /** + * yields a closure of the supplied parameters, producing a function that takes + * no arguments and is suitable for use as an autogravity function like so: + * + * @param margin (int) - distance from the viewable region edge that an + * element should be before setting its tooltip's gravity to be away + * from that edge. + * @param prefer (string, e.g. 'n', 'sw', 'w') - the direction to prefer + * if there are no viewable region edges effecting the tooltip's + * gravity. It will try to vary from this minimally, for example, + * if 'sw' is preferred and an element is near the right viewable + * region edge, but not the top edge, it will set the gravity for + * that element's tooltip to be 'se', preserving the southern + * component. + */ + $.fn.tipsy.autoBounds = function(margin, prefer) { + return function() { + var dir = {ns: prefer[0], ew: (prefer.length > 1 ? prefer[1] : false)}, + boundTop = $(document).scrollTop() + margin, + boundLeft = $(document).scrollLeft() + margin, + $this = $(this); + + if ($this.offset().top < boundTop) dir.ns = 'n'; + if ($this.offset().left < boundLeft) dir.ew = 'w'; + if ($(window).width() + $(document).scrollLeft() - $this.offset().left < margin) dir.ew = 'e'; + if ($(window).height() + $(document).scrollTop() - $this.offset().top < margin) dir.ns = 's'; + + return dir.ns + (dir.ew ? dir.ew : ''); + } + }; + })(jQuery); diff --git a/core/js/js.js b/core/js/js.js index cddf95a8435..e2263685939 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -298,11 +298,17 @@ $(document).ready(function(){ $('#settings #expanddiv').slideUp(); } }); - - if($('.action').attr('title')) $('.action').tipsy({gravity:'s', fade:true, live:true}); - $('.selectedActions a').tipsy({gravity:'n', fade:true, live:true}); + + $('.remove .action').tipsy({gravity:'se', fade:true, live:true}); + $('.date .action').tipsy({gravity:'se', fade:true, live:true}); + $('.action').tipsy({gravity:'s', fade:true, live:true}); $('.selectedActions a.delete').tipsy({gravity: 'ne', fade:true, live:true}); - $('input#identity').tipsy({gravity:'w', fade:true}); + $('.selectedActions a').tipsy({gravity:'n', fade:true, live:true}); + $('input').each(function(i,input) { + if($(input).attr('title')) { + $(input).tipsy({gravity:'w', fade:true}); + } + }); }); if (!Array.prototype.map){ diff --git a/files/js/files.js b/files/js/files.js index 23ea0fd2792..4eb8feb87d8 100644 --- a/files/js/files.js +++ b/files/js/files.js @@ -19,7 +19,7 @@ $(document).ready(function() { }); $('.file_upload_button_wrapper').tipsy({gravity:'e', fade:true}); - $('td.filesize').tipsy({gravity:'se', fade:true, live:true}); + $('td.filesize').tipsy({gravity:'s', fade:true, live:true}); $('td .modified').tipsy({gravity:'s', fade:true, live:true}); // Sets the file-action buttons behaviour : diff --git a/settings/css/settings.css b/settings/css/settings.css index 7499de1e053..c73e08437c1 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -11,7 +11,7 @@ td.password>img, td.remove>img { display:none; cursor:pointer; } td.password>span { margin-right:1.2em; } td.password { width:12em; cursor:pointer; } -td.remove { width:1em; } +td.remove { width:1em; padding-right:1em; } tr:hover>td.password>span { margin:0; cursor:pointer; } tr:hover>td.remove>img, tr:hover>td.password>img { display:inline; cursor:pointer; } tr:hover>td.remove>img { float:right; } diff --git a/settings/js/users.js b/settings/js/users.js index 4c9aedd0e27..bc1b8fc3ed0 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -104,7 +104,7 @@ $(document).ready(function(){ }); tr.find('td.groups').append(select); if(tr.find('td.remve img').length==0){ - tr.find('td.remove').append($('Remove')); + tr.find('td.remove').append($('Delete')); } applyMultiplySelect(select); $('#content table tr').last().after(tr); diff --git a/settings/templates/users.php b/settings/templates/users.php index 5919ccb7dfa..01e2adf4e97 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -22,7 +22,7 @@ foreach($_["groups"] as $group) {
    From 970888b92d967f657b4f719a729a823cbf7e2437 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 14 Aug 2011 15:06:16 +0200 Subject: [PATCH 24/27] fix some details in Personal --- apps/user_openid/templates/settings.php | 5 ++++- settings/templates/personal.php | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/apps/user_openid/templates/settings.php b/apps/user_openid/templates/settings.php index add3345f7b1..b912ff1b79a 100644 --- a/apps/user_openid/templates/settings.php +++ b/apps/user_openid/templates/settings.php @@ -1,6 +1,9 @@
    -

    OpenID

    +

    OpenID + " title="OpenID"> +

    +
    diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 02f66c9a131..021d03ba6da 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -26,7 +26,9 @@

    - WebDAV + WebDAV " title="webdav"> + +

    Date: Sun, 14 Aug 2011 15:30:30 +0200 Subject: [PATCH 25/27] Show language names in Personal --- settings/languageCodes.php | 147 ++++++++++++++++++++++++++++++++ settings/personal.php | 11 ++- settings/templates/personal.php | 2 +- 3 files changed, 156 insertions(+), 4 deletions(-) create mode 100644 settings/languageCodes.php diff --git a/settings/languageCodes.php b/settings/languageCodes.php new file mode 100644 index 00000000000..6e15b58aa7a --- /dev/null +++ b/settings/languageCodes.php @@ -0,0 +1,147 @@ +'Abkhazian', +'aa'=>'Afar', +'af'=>'Afrikaans', +'sq'=>'Albanian', +'am'=>'Amharic', +'ar'=>'Arabic', +'hy'=>'Armenian', +'as'=>'Assamese', +'ay'=>'Aymara', +'az'=>'Azerbaijani', +'ba'=>'Bashkir', +'eu'=>'Basque', +'bn'=>'Bengali (Bangla)', +'dz'=>'Bhutani', +'bh'=>'Bihari', +'bi'=>'Bislama', +'br'=>'Breton', +'bg'=>'Bulgarian', +'my'=>'Burmese', +'be'=>'Byelorussian (Belarusian)', +'km'=>'Cambodian', +'ca'=>'Catalan', +'zh'=>'Chinese (Simplified)', +'zh'=>'Chinese (Traditional)', +'co'=>'Corsican', +'hr'=>'Croatian', +'cs'=>'Czech', +'da'=>'Danish', +'nl'=>'Dutch', +'en'=>'English', +'eo'=>'Esperanto', +'et'=>'Estonian', +'fo'=>'Faeroese', +'fa'=>'Farsi', +'fj'=>'Fiji', +'fi'=>'Finnish', +'nl-be'=>'Flemish', +'fr'=>'French', +'fy'=>'Frisian', +'gl'=>'Galician', +'gd'=>'Gaelic (Scottish)', +'gv'=>'Gaelic (Manx)', +'ka'=>'Georgian', +'de'=>'German', +'el'=>'Greek', +'kl'=>'Greenlandic', +'gn'=>'Guarani', +'gu'=>'Gujarati', +'ha'=>'Hausa', +'he'=>'Hebrew', +'iw'=>'Hebrew', +'hi'=>'Hindi', +'hu'=>'Hungarian', +'is'=>'Icelandic', +'id'=>'Indonesian', +'in'=>'Indonesian', +'ia'=>'Interlingua', +'ie'=>'Interlingue', +'iu'=>'Inuktitut', +'ik'=>'Inupiak', +'ga'=>'Irish', +'it'=>'Italian', +'ja'=>'Japanese', +'jv'=>'Javanese', +'kn'=>'Kannada', +'ks'=>'Kashmiri', +'kk'=>'Kazakh', +'rw'=>'Kinyarwanda (Ruanda)', +'ky'=>'Kirghiz', +'rn'=>'Kirundi (Rundi)', +'ko'=>'Korean', +'ku'=>'Kurdish', +'lo'=>'Laothian', +'la'=>'Latin', +'lv'=>'Latvian (Lettish)', +'li'=>'Limburgish ( Limburger)', +'ln'=>'Lingala', +'lt'=>'Lithuanian', +'mk'=>'Macedonian', +'mg'=>'Malagasy', +'ms'=>'Malay', +'ml'=>'Malayalam', +'mt'=>'Maltese', +'mi'=>'Maori', +'mr'=>'Marathi', +'mo'=>'Moldavian', +'mn'=>'Mongolian', +'na'=>'Nauru', +'ne'=>'Nepali', +'no'=>'Norwegian', +'oc'=>'Occitan', +'or'=>'Oriya', +'om'=>'Oromo (Afan, Galla)', +'ps'=>'Pashto (Pushto)', +'pl'=>'Polish', +'pt'=>'Portuguese', +'pa'=>'Punjabi', +'qu'=>'Quechua', +'rm'=>'Rhaeto-Romance', +'ro'=>'Romanian', +'ru'=>'Russian', +'sm'=>'Samoan', +'sg'=>'Sangro', +'sa'=>'Sanskrit', +'sr'=>'Serbian', +'sh'=>'Serbo-Croatian', +'st'=>'Sesotho', +'tn'=>'Setswana', +'sn'=>'Shona', +'sd'=>'Sindhi', +'si'=>'Sinhalese', +'ss'=>'Siswati', +'sk'=>'Slovak', +'sl'=>'Slovenian', +'so'=>'Somali', +'es'=>'Spanish', +'su'=>'Sundanese', +'sw'=>'Swahili (Kiswahili)', +'sv'=>'Swedish', +'tl'=>'Tagalog', +'tg'=>'Tajik', +'ta'=>'Tamil', +'tt'=>'Tatar', +'te'=>'Telugu', +'th'=>'Thai', +'bo'=>'Tibetan', +'ti'=>'Tigrinya', +'to'=>'Tonga', +'ts'=>'Tsonga', +'tr'=>'Turkish', +'tk'=>'Turkmen', +'tw'=>'Twi', +'ug'=>'Uighur', +'uk'=>'Ukrainian', +'ur'=>'Urdu', +'uz'=>'Uzbek', +'vi'=>'Vietnamese', +'vo'=>'Volapk', +'cy'=>'Welsh', +'wo'=>'Wolof', +'xh'=>'Xhosa', +'yi'=>'Yiddish', +'ji'=>'Yiddish', +'yo'=>'Yoruba', +'zu'=>'Zulu', +); \ No newline at end of file diff --git a/settings/personal.php b/settings/personal.php index d2c29019ca5..a31042bb53f 100644 --- a/settings/personal.php +++ b/settings/personal.php @@ -18,10 +18,15 @@ $total=$free+$used; $relative=round(($used/$total)*100); $lang=OC_Preferences::getValue( OC_User::getUser(), 'core', 'lang', 'en' ); -$languages=OC_L10N::findAvailableLanguages(); +$languageCodes=OC_L10N::findAvailableLanguages(); //put the current language in the front -unset($languages[array_search($lang,$languages)]); -array_unshift($languages,$lang); +unset($languageCodes[array_search($lang,$languageCodes)]); +array_unshift($languageCodes,$lang); +$languageNames=include 'languageCodes.php'; +$languages=array(); +foreach($languageCodes as $lang){ + $languages[]=array('code'=>$lang,'name'=>$languageNames[$lang]); +} // Return template $tmpl = new OC_Template( "settings", "personal", "user"); diff --git a/settings/templates/personal.php b/settings/templates/personal.php index 021d03ba6da..8a6439f9722 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -18,7 +18,7 @@ t('Help translating');?> From 7bb261f81014b3f0abb2677f22289e6906ced749 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sun, 14 Aug 2011 16:12:27 +0200 Subject: [PATCH 26/27] more fixes for Personal and Tipsy --- apps/user_openid/js/settings.js | 10 +++++++++- apps/user_openid/templates/settings.php | 6 ++---- core/js/js.js | 14 ++++++++++---- core/templates/layout.user.php | 4 ++-- files/js/files.js | 4 ---- settings/css/settings.css | 2 ++ settings/js/personal.js | 8 ++++++++ settings/templates/personal.php | 11 +++++------ 8 files changed, 38 insertions(+), 21 deletions(-) diff --git a/apps/user_openid/js/settings.js b/apps/user_openid/js/settings.js index b85ce2d3522..cfecd7b1cb4 100644 --- a/apps/user_openid/js/settings.js +++ b/apps/user_openid/js/settings.js @@ -1,5 +1,5 @@ $(document).ready(function(){ - $('#openidform input').blur(function(event){ + $('#openidform #identity').blur(function(event){ event.preventDefault(); var post = $( "#openidform" ).serialize(); $.post( 'ajax/openid.php', post, function(data){ @@ -9,4 +9,12 @@ $(document).ready(function(){ } }); }); + + // reset value when edited, workaround because of .select() not working with disabled inputs + $('#openid').focus(function(event){ + openidValue = $('#openid').val(); + }); + $('#openid').blur(function(event){ + $('#openid').val(openidValue); + }); }); diff --git a/apps/user_openid/templates/settings.php b/apps/user_openid/templates/settings.php index b912ff1b79a..51c80e566b6 100644 --- a/apps/user_openid/templates/settings.php +++ b/apps/user_openid/templates/settings.php @@ -1,9 +1,7 @@
    -

    OpenID - " title="OpenID"> -

    - + +
    diff --git a/core/js/js.js b/core/js/js.js index e2263685939..2f495321b86 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -299,15 +299,21 @@ $(document).ready(function(){ } }); + // all the tipsy stuff needs to be here (in reverse order) to work + $('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true}); + $('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true}); $('.remove .action').tipsy({gravity:'se', fade:true, live:true}); $('.date .action').tipsy({gravity:'se', fade:true, live:true}); $('.action').tipsy({gravity:'s', fade:true, live:true}); $('.selectedActions a.delete').tipsy({gravity: 'ne', fade:true, live:true}); $('.selectedActions a').tipsy({gravity:'n', fade:true, live:true}); - $('input').each(function(i,input) { - if($(input).attr('title')) { - $(input).tipsy({gravity:'w', fade:true}); - } + $('.file_upload_button_wrapper').tipsy({gravity:'e', fade:true}); + $('td.filesize').tipsy({gravity:'s', fade:true, live:true}); + $('td .modified').tipsy({gravity:'s', fade:true, live:true}); + + $('input').tipsy({gravity:'w', fade:true}); + $('input[type=text]').focus(function(){ + this.select(); }); }); diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index c0b347937cf..2e70fa29389 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -31,9 +31,9 @@
    ●●●●●●● - + - Remove + Remove
    ●●●●●●● - + set new password - Remove + Delete