resolved merge conflict
commit
2cb231d0a4
@ -1,28 +1,31 @@
|
||||
[main]
|
||||
host = https://www.transifex.net
|
||||
|
||||
[owncloud.admin]
|
||||
file_filter = l10n/<lang>/admin.po
|
||||
source_file = l10n/templates/admin.pot
|
||||
source_lang = en
|
||||
|
||||
[owncloud.core]
|
||||
file_filter = l10n/<lang>/core.po
|
||||
host = http://www.transifex.net
|
||||
source_file = l10n/templates/core.pot
|
||||
source_lang = en
|
||||
|
||||
[owncloud.help]
|
||||
file_filter = l10n/<lang>/help.po
|
||||
source_file = l10n/templates/help.pot
|
||||
[owncloud.settings]
|
||||
file_filter = l10n/<lang>/settings.po
|
||||
host = http://www.transifex.net
|
||||
source_file = l10n/templates/settings.pot
|
||||
source_lang = en
|
||||
|
||||
[owncloud.log]
|
||||
file_filter = l10n/<lang>/log.po
|
||||
source_file = l10n/templates/log.pot
|
||||
[owncloud.files]
|
||||
file_filter = translations/owncloud.files/<lang>.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.settings]
|
||||
file_filter = l10n/<lang>/settings.po
|
||||
source_file = l10n/templates/settings.pot
|
||||
[owncloud.media]
|
||||
file_filter = translations/owncloud.media/<lang>.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
|
||||
|
||||
|
||||
@ -1,26 +0,0 @@
|
||||
<?php
|
||||
|
||||
// Init owncloud
|
||||
require_once('../../lib/base.php');
|
||||
|
||||
// We send json data
|
||||
header( "Content-Type: application/jsonrequest" );
|
||||
|
||||
// Check if we are a user
|
||||
if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' )){
|
||||
echo json_encode( array( "status" => "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" )));
|
||||
}
|
||||
|
||||
?>
|
||||
@ -1,5 +0,0 @@
|
||||
<?php
|
||||
|
||||
OC_App::register( array( "order" => 1, "id" => "admin", "name" => "Administration" ));
|
||||
|
||||
?>
|
||||
@ -1,3 +0,0 @@
|
||||
li{color:#888}
|
||||
li.active{color:#000}
|
||||
span.version{margin-left:3em;color:#ddd}
|
||||
@ -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%; }
|
||||
@ -1,19 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"read more" => "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?"
|
||||
);
|
||||
@ -1,20 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"read more" => "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?"
|
||||
);
|
||||
@ -1,20 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"read more" => "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?"
|
||||
);
|
||||
@ -1,20 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"read more" => "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"
|
||||
);
|
||||
@ -1,19 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"read more" => "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"
|
||||
);
|
||||
@ -1,19 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"read more" => "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ę"
|
||||
);
|
||||
@ -1,36 +0,0 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* ownCloud
|
||||
*
|
||||
* @author Frank Karlitschek
|
||||
* @copyright 2010 Frank Karlitschek karlitschek@kde.org
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 3 of the License, or any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
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();
|
||||
|
||||
?>
|
||||
|
||||
@ -1,2 +0,0 @@
|
||||
<h2><?php echo $l->t( 'System Settings' ); ?></h2>
|
||||
#TBD
|
||||
@ -1,16 +1,16 @@
|
||||
#folderlist li{list-style-type:none;margin-bottom:10px;}
|
||||
#folderlist button.prettybutton{font-size:1em;width:10ex;}
|
||||
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;}
|
||||
#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: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;}
|
||||
#collection li,#playlist li{list-style-type:none;}
|
||||
.template{display:none}
|
||||
#collection li button { float:right; }
|
||||
#collection li,#playlist li { list-style-type:none; }
|
||||
.template { display:none; }
|
||||
|
||||
#collection li{padding-right:10px;}
|
||||
#searchresults input.play, #searchresults input.add{float:right; height:16px; width:16px;}
|
||||
#collection tr.collapsed td.album, #collection tr.collapsed td.title{color:#ddd}
|
||||
a.expander{ float:right; display:block; }
|
||||
tr.active { background-color:#ccc; }
|
||||
#collection li { padding-right:10px; }
|
||||
#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:#eee; }
|
||||
|
||||
@ -1,25 +1,16 @@
|
||||
#controls ul.jp-controls{list-style-type:none;padding:0;}
|
||||
#controls ul.jp-controls li{display:inline;}
|
||||
#controls ul.jp-controls a{position:absolute;overflow:hidden;text-indent:-9999px;}
|
||||
a.jp-play,a.jp-pause{width:3.1em;height:3.1em;z-index:1;top:0;left:3.8em;}
|
||||
a.jp-play{background:url("../img/jplayer.blue.monday.png") 0 0 no-repeat;}
|
||||
a.jp-play:hover{background:url("../img/jplayer.blue.monday.png") -41px 0 no-repeat;}
|
||||
a.jp-pause{background:url("../img/jplayer.blue.monday.png") 0 -42px no-repeat;display:none;}
|
||||
a.jp-pause:hover{background:url("../img/jplayer.blue.monday.png") -41px -42px no-repeat;}
|
||||
a.jp-previous{left:20px;top:.5em;background:url("../img/jplayer.blue.monday.png") 0 -112px no-repeat;width:2.3em;height:2.3em;}
|
||||
a.jp-previous:hover{background:url("../img/jplayer.blue.monday.png") -29px -112px no-repeat;}
|
||||
a.jp-next{left:88px;top:.5em;background:url("../img/jplayer.blue.monday.png") 0 -141px no-repeat;width:2.3em;height:2.3em;}
|
||||
a.jp-next:hover{background:url("../img/jplayer.blue.monday.png") -29px -141px no-repeat;}
|
||||
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;}
|
||||
a.jp-mute{background:url("../img/jplayer.blue.monday.png") 0 -186px no-repeat;}
|
||||
a.jp-mute:hover{background:url("../img/jplayer.blue.monday.png") -19px -170px no-repeat;}
|
||||
a.jp-unmute{background:url("../img/jplayer.blue.monday.png") 0 -170px no-repeat;display:none;}
|
||||
a.jp-unmute:hover{background:url("../img/jplayer.blue.monday.png") -19px -186px no-repeat;}
|
||||
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; }
|
||||
|
||||
@ -0,0 +1,9 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Music" => "Musik",
|
||||
"Songs scanned" => "Lieder gescannt",
|
||||
"Rescan Collection" => "Sammlung scannen",
|
||||
"Pause" => "Pause",
|
||||
"Artist" => "Künstler",
|
||||
"Album" => "Album",
|
||||
"Title" => "Titel"
|
||||
);
|
||||
@ -0,0 +1,9 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Music" => "Musique",
|
||||
"Songs scanned" => "Pistes scannées",
|
||||
"Rescan Collection" => "Réanalyser la Collection",
|
||||
"Pause" => "Pause",
|
||||
"Artist" => "Artiste",
|
||||
"Album" => "Album",
|
||||
"Title" => "Titre"
|
||||
);
|
||||
@ -1,6 +1,8 @@
|
||||
<form id="openidform">
|
||||
<fieldset>
|
||||
<legend><?php echo $l->t( 'OpenID' );?></legend>
|
||||
<input type="text" name='identity' id='identity' value="<?php echo $_['identity']; ?>" placeholder="OpenID for <?php echo OC_User::getUser();?>" />
|
||||
<fieldset class="personalblock">
|
||||
<label for="openid"><strong>OpenID</strong></label>
|
||||
<input type="text" id="openid" value="<?php echo ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].OC::$WEBROOT.'/?'; echo OC_User::getUser(); ?>" title="you can authenticate to other sites with this address" />
|
||||
<label for="identity">Authorized</label>
|
||||
<input type="text" name="identity" id="identity" value="<?php echo $_['identity']; ?>" placeholder="OpenID provider" title="Wordpress, Identi.ca, Launchpad, …" />
|
||||
</fieldset>
|
||||
</form>
|
||||
</form>
|
||||
|
||||
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* ownCloud
|
||||
*
|
||||
* @author Hans Bakker
|
||||
* @copyright 2011 Hans Bakker hansmbakker+kde@gmail.com
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 3 of the License, or any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public
|
||||
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
header("Content-Type: application/jsonrequest");
|
||||
|
||||
$RUNTIME_NOAPPS = TRUE; //no apps, yet
|
||||
|
||||
require_once('../../lib/base.php');
|
||||
|
||||
$not_installed = !OC_Config::getValue('installed', false);
|
||||
|
||||
// First step : check if the server is correctly configured for ownCloud :
|
||||
$errors = OC_Util::checkServer();
|
||||
if(count($errors) > 0) {
|
||||
echo json_encode(array("user_valid" => "false", "comment" => $errors));
|
||||
}
|
||||
|
||||
// Setup required :
|
||||
elseif($not_installed) {
|
||||
echo json_encode(array("user_valid" => "false", "comment" => "not_installed"));
|
||||
|
||||
}
|
||||
|
||||
// Someone wants to check a user:
|
||||
elseif(isset($_GET["user"]) and isset($_GET["password"])) {
|
||||
if(OC_User::checkPassword($_GET["user"], $_GET["password"]))
|
||||
echo json_encode(array("user_valid" => "true", "comment" => ""));
|
||||
else
|
||||
echo json_encode(array("user_valid" => "false", "comment" => ""));
|
||||
}
|
||||
|
||||
// For all others cases:
|
||||
else {
|
||||
echo json_encode(array("user_valid" => "false", "comment" => "unknown"));
|
||||
}
|
||||
|
||||
?>
|
||||
@ -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; }
|
||||
|
||||
@ -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; }
|
||||
|
||||
@ -1,17 +1,8 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Error 404, Cloud not found" => "Fejl 404, Skyen kan ikke findes",
|
||||
"Login failed!" => "Login mislykkedes",
|
||||
"Advanced" => "Avanceret",
|
||||
"Set where to store the data." => "Indstil data mappe.",
|
||||
"Data directory:" => "Data mappe:",
|
||||
"SQLite" => "SQLite",
|
||||
"Database name:" => "Database navn:",
|
||||
"Host:" => "Host:",
|
||||
"Table prefix:" => "Tabel prefix:",
|
||||
"Finish setup" => "Afslut installation",
|
||||
"<a href=\"http://owncloud.org/\">ownCloud</a> is a personal cloud which runs on your own server.</p>" => "<a href=\"http://owncloud.org/\">ownCloud</a> er din personly sky der køre på din egen server.</p>",
|
||||
"Login failed!" => "Login mislykkedes",
|
||||
"You are logged out." => "Du er nu logget ud",
|
||||
"prev" => "forrige",
|
||||
"next" => "næste",
|
||||
"Search" => "Søg"
|
||||
"You are logged out." => "Du er nu logget ud"
|
||||
);
|
||||
|
||||
@ -1,28 +1,24 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Error 404, Cloud not found" => "Cloud konnte nicht gefunden werden.",
|
||||
"<strong>ownCloud</strong> is your personal web storage." => "<strong>ownCloud</strong> ist dein persönlicher Online-Speicher.",
|
||||
"Finish the setup by following the steps below." => "Die Installation ist fast abgeschlossen.",
|
||||
"Create an <strong>admin account</strong>." => "<strong>Verwalter-Konto</strong> erstellen",
|
||||
"Login failed!" => "Anmeldung fehlgeschlagen!",
|
||||
"remember" => "merken",
|
||||
"Create an <strong>admin account</strong>" => "<strong>Admin-Konto</strong> anlegen",
|
||||
"Username" => "Nutzername",
|
||||
"Password" => "Passwort",
|
||||
"Configure the database" => "Datenbank einrichten",
|
||||
"will be used" => "wird genutzt",
|
||||
"Database user" => "Datenbanknutzer",
|
||||
"Database password" => "Datenbankpasswort",
|
||||
"Database name" => "Datenbankname",
|
||||
"Advanced" => "Erweitert",
|
||||
"Set where to store the data." => "Speicherort der Daten",
|
||||
"Data directory:" => "Datenverzeichnis:",
|
||||
"Configure the database." => "Datenbank einrichten",
|
||||
"SQLite will be used for the database. You have nothing to do." => "SQLite wird als Datenbank genutzt.",
|
||||
"SQLite" => "SQLite",
|
||||
"MySQL will be used for the database." => "MySQL wird als Datenbank genutzt.",
|
||||
"MySQL username:" => "MySQL-Nutzername:",
|
||||
"MySQL password:" => "MySQL-Passwort:",
|
||||
"Database name:" => "Datenbankname:",
|
||||
"Host:" => "Host:",
|
||||
"Table prefix:" => "Tabellenpräfix:",
|
||||
"Host" => "Host",
|
||||
"Table prefix" => "Tabellenpräfix",
|
||||
"Data folder" => "Datenverzeichnis",
|
||||
"Finish setup" => "Installation abschließen",
|
||||
"<a href=\"http://owncloud.org/\">ownCloud</a> is a personal cloud which runs on your own server.</p>" => "<a href=\"http://owncloud.org/\">ownCloud</a> ist ein privater Online-Speicher für deinen eigenen Server.</p>",
|
||||
"Login failed!" => "Anmeldung fehlgeschlagen!",
|
||||
"Remember login" => "Anmeldung merken",
|
||||
"You are logged out." => "Erfolgreich abgemeldet.",
|
||||
"Cloud not found" => "Cloud nicht verfügbar",
|
||||
"is a personal cloud which runs on your own server" => "ist ein persönlicher Online-Speicher für deinen eigenen Server",
|
||||
"prev" => "Zurück",
|
||||
"next" => "Weiter",
|
||||
"Search" => "Suchen"
|
||||
"You are logged out." => "Erfolgreich abgemeldet.",
|
||||
"Log out" => "Abmelden",
|
||||
"Settings" => "Einstellungen"
|
||||
);
|
||||
|
||||
@ -1,28 +1,10 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Error 404, Cloud not found" => "Error 404, La pagina no se pudo encontrar",
|
||||
"<strong>ownCloud</strong> is your personal web storage." => "<strong>ownCloud</strong> es tu web de almacenamiento personal.",
|
||||
"Finish the setup by following the steps below." => "Completa la instalación mediante los siguientes pasos.",
|
||||
"Create an <strong>admin account</strong>." => "Crear una <strong>cuenta de administrador.</strong>",
|
||||
"Login failed!" => "¡No se pudo iniciar sesión!",
|
||||
"Username" => "Nombre de usuario",
|
||||
"Password" => "Contraseña",
|
||||
"Advanced" => "Avanzado",
|
||||
"Set where to store the data." => "Selecciona donde quieres almacenar los datos.",
|
||||
"Data directory:" => "Directorio de almacenamiento:",
|
||||
"Configure the database." => "Configurar la base de datos.",
|
||||
"SQLite will be used for the database. You have nothing to do." => "Se utilizará SQLite para la base de datos. No necesitas configurar nada más.",
|
||||
"SQLite" => "SQLite",
|
||||
"MySQL will be used for the database." => "Se utilizará MySQL para la base de datos.",
|
||||
"MySQL username:" => "Nombre de usuario de MySQL:",
|
||||
"MySQL password:" => "Contraseña de MySQL:",
|
||||
"Database name:" => "Nombre de la base de datos:",
|
||||
"Host:" => "Host:",
|
||||
"Table prefix:" => "Prefijo de la tabla:",
|
||||
"Finish setup" => "Completar la instalación",
|
||||
"<a href=\"http://owncloud.org/\">ownCloud</a> is a personal cloud which runs on your own server.</p>" => "<a href=\"http://owncloud.org/\">ownCloud</a> es tu nube personal que corre en tu propio servidor.</p>",
|
||||
"Login failed!" => "¡No se pudo iniciar sesión!",
|
||||
"Remember login" => "Recordarme",
|
||||
"You are logged out." => "Has cerrado sesión.",
|
||||
"prev" => "anterior",
|
||||
"next" => "siguiente",
|
||||
"Search" => "Buscar"
|
||||
"You are logged out." => "Has cerrado sesión."
|
||||
);
|
||||
|
||||
@ -1,28 +1,24 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Error 404, Cloud not found" => "Erreur 404, la page demandée n'existe pas",
|
||||
"<strong>ownCloud</strong> is your personal web storage." => "<strong>ownCloud</strong> est votre espace de stockage web personnel.",
|
||||
"Finish the setup by following the steps below." => "Terminez l'installation en suivant les étapes ci-dessous.",
|
||||
"Create an <strong>admin account</strong>." => "Veuillez créer un <strong>compte administrateur.</strong>",
|
||||
"Login failed!" => "Échec de la connexion !",
|
||||
"remember" => "se souvenir de moi",
|
||||
"Create an <strong>admin account</strong>" => "Créer un <strong>compte administrateur</strong>",
|
||||
"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",
|
||||
"Advanced" => "Avancé",
|
||||
"Set where to store the data." => "Sélectionnez où sauvegarder les données",
|
||||
"Data directory:" => "Répertoire de données",
|
||||
"Configure the database." => "Configurez la base de données.",
|
||||
"SQLite will be used for the database. You have nothing to do." => "SQLite sera utilisé comme moteur pour la base de données. Vous n'avez rien de plus à faire.",
|
||||
"SQLite" => "SQLite",
|
||||
"MySQL will be used for the database." => "MySQL sera utilisé comme moteur pour la base de données.",
|
||||
"MySQL username:" => "Nom d'utilisateur MySQL :",
|
||||
"MySQL password:" => "Mot de passe MySQL :",
|
||||
"Database name:" => "Nom de la base de données :",
|
||||
"Host:" => "Hôte :",
|
||||
"Table prefix:" => "Préfixe de table :",
|
||||
"Host" => "Hôte",
|
||||
"Table prefix" => "Préfixe des tables",
|
||||
"Data folder" => "Répertoire des données",
|
||||
"Finish setup" => "Terminer l'installation",
|
||||
"<a href=\"http://owncloud.org/\">ownCloud</a> is a personal cloud which runs on your own server.</p>" => "<a href=\"http://owncloud.org/\">ownCloud</a> est votre solution cloud personnelle propulsée par votre propre serveur.</p>",
|
||||
"Login failed!" => "Échec de la connexion !",
|
||||
"Remember login" => "Se souvenir de moi",
|
||||
"You are logged out." => "Vous êtes désormais déconnecté.",
|
||||
"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",
|
||||
"Search" => "Rechercher"
|
||||
"You are logged out." => "Vous êtes désormais déconnecté.",
|
||||
"Log out" => "Se déconnecter",
|
||||
"Settings" => "Paramètres"
|
||||
);
|
||||
|
||||
@ -1,17 +1,8 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Error 404, Cloud not found" => "Fout 404, Cloud niet gevonden.",
|
||||
"Login failed!" => "Aanmelden mislukt.",
|
||||
"Advanced" => "Geavanceerd",
|
||||
"Set where to store the data." => "Bepaal de opslaglocatie.",
|
||||
"Data directory:" => "Gegevensmap:",
|
||||
"SQLite" => "SQLite",
|
||||
"Database name:" => "Databasenaam:",
|
||||
"Host:" => "Host:",
|
||||
"Table prefix:" => "Voorvoegsel voor tabelnamen:",
|
||||
"Finish setup" => "Installatie afronden",
|
||||
"<a href=\"http://owncloud.org/\">ownCloud</a> is a personal cloud which runs on your own server.</p>" => "<a href=\"http://owncloud.org/\">ownCloud</a> is een persoonlijke cloud die op uw eigen server draait.</p>",
|
||||
"Login failed!" => "Aanmelden mislukt.",
|
||||
"You are logged out." => "U bent afgemeld.",
|
||||
"prev" => "vorige",
|
||||
"next" => "volgende",
|
||||
"Search" => "Zoeken"
|
||||
"You are logged out." => "U bent afgemeld."
|
||||
);
|
||||
|
||||
@ -1,17 +1,8 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Error 404, Cloud not found" => "Błąd 404, Chmura nie znaleziona",
|
||||
"Login failed!" => "Nie udało się zalogować!",
|
||||
"Advanced" => "Zaawansowane",
|
||||
"Set where to store the data." => "Ustaw, gdzie przechowywać dane.",
|
||||
"Data directory:" => "Katalog danych:",
|
||||
"SQLite" => "SQLite",
|
||||
"Database name:" => "Nazwa bazy:",
|
||||
"Host:" => "Host:",
|
||||
"Table prefix:" => "Przedrostek tabeli:",
|
||||
"Finish setup" => "Zakończ instalację",
|
||||
"<a href=\"http://owncloud.org/\">ownCloud</a> is a personal cloud which runs on your own server.</p>" => "<a href=\"http://owncloud.org/\">ownCloud</a> jest osobistą chmurą działającą na Twoim własnym serwerze.</p>",
|
||||
"Login failed!" => "Nie udało się zalogować!",
|
||||
"You are logged out." => "Jesteś wylogowany.",
|
||||
"prev" => "wstecz",
|
||||
"next" => "dalej",
|
||||
"Search" => "Szukaj"
|
||||
"You are logged out." => "Jesteś wylogowany."
|
||||
);
|
||||
|
||||
@ -0,0 +1,14 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Files" => "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."
|
||||
);
|
||||
@ -1,5 +0,0 @@
|
||||
<?php
|
||||
|
||||
OC_App::register( array( "order" => 1, "id" => "help", "name" => "Help" ));
|
||||
|
||||
?>
|
||||
@ -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; }
|
||||
@ -1,4 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Questions and Answers" => "Въпроси и отговори",
|
||||
"ASK A QUESTION" => "ЗАДАЙТЕ ВЪПРОС"
|
||||
);
|
||||
@ -1,4 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Questions and Answers" => "Spørgsmål og Svar",
|
||||
"ASK A QUESTION" => "STIL ET SPØRGSMÅL"
|
||||
);
|
||||
@ -1,4 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Questions and Answers" => "Fragen & Antworten",
|
||||
"ASK A QUESTION" => "Stell eine Frage"
|
||||
);
|
||||
@ -1,4 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Questions and Answers" => "Preguntas y Respuestas",
|
||||
"ASK A QUESTION" => "Haz una pregunta"
|
||||
);
|
||||
@ -1,4 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Questions and Answers" => "Questions / Réponses",
|
||||
"ASK A QUESTION" => "Poser une question"
|
||||
);
|
||||
@ -1,4 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Questions and Answers" => "Vraag en Antwoord",
|
||||
"ASK A QUESTION" => "Stel een vraag"
|
||||
);
|
||||
@ -1,4 +0,0 @@
|
||||
<?php $TRANSLATIONS = array(
|
||||
"Questions and Answers" => "Pytania i odpowiedzi",
|
||||
"ASK A QUESTION" => "ZADAJ PYTANIE"
|
||||
);
|
||||
@ -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 <ilivanov@gmail.com>, 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 <ilivanov@gmail.com>\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 "ЗАДАЙТЕ ВЪПРОС"
|
||||
|
||||
|
||||
@ -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 <JanCBorchardt@fsfe.org>, 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 <JanCBorchardt@fsfe.org>\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?"
|
||||
|
||||
|
||||
@ -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 <JanCBorchardt@fsfe.org>\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"
|
||||
|
||||
|
||||
@ -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 <JanCBorchardt@fsfe.org>\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"
|
||||
|
||||
|
||||
@ -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 <JanCBorchardt@fsfe.org>, 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 <JanCBorchardt@fsfe.org>\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?"
|
||||
|
||||
|
||||
@ -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 <mail@jakobsack.de>, 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 <JanCBorchardt@fsfe.org>\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"
|
||||
|
||||
|
||||
@ -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.
|
||||
#
|
||||
# <rom1dep@gmail.com>, 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 <JanCBorchardt@fsfe.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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?"
|
||||
|
||||
|
||||
@ -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.
|
||||
#
|
||||
# <rom1dep@gmail.com>, 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 <JanCBorchardt@fsfe.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
|
||||
@ -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.
|
||||
#
|
||||
# <rom1dep@gmail.com>, 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 <JanCBorchardt@fsfe.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
|
||||
@ -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.
|
||||
#
|
||||
# <rom1dep@gmail.com>, 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 <rom1dep@gmail.com>\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"
|
||||
|
||||
|
||||
@ -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.
|
||||
#
|
||||
# <rom1dep@gmail.com>, 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 <rom1dep@gmail.com>\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."
|
||||
|
||||
|
||||
@ -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.
|
||||
#
|
||||
# <rom1dep@gmail.com>, 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 <rom1dep@gmail.com>\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"
|
||||
|
||||
|
||||
@ -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 <icewind1991@gmail.com>, 2011.
|
||||
# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 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 <JanCBorchardt@fsfe.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
|
||||
@ -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 <icewind1991@gmail.com>, 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 <JanCBorchardt@fsfe.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
|
||||
@ -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 <icewind1991@gmail.com>, 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 <JanCBorchardt@fsfe.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
|
||||
@ -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 <kdomanski@kdemail.net>, 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 <JanCBorchardt@fsfe.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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ę"
|
||||
|
||||
|
||||
@ -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 <kdomanski@kdemail.net>, 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 <JanCBorchardt@fsfe.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
|
||||
@ -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 <kdomanski@kdemail.net>, 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 <JanCBorchardt@fsfe.org>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\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"
|
||||
|
||||
|
||||
@ -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 <EMAIL@ADDRESS>, 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 <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: ../templates/app.php: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 ""
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue