Merge branch 'master' of git://anongit.kde.org/owncloud

This commit is contained in:
Michael Gapczynski 2011-08-20 12:03:22 -04:00
commit 6afc17be1a
64 changed files with 926 additions and 483 deletions

View File

@ -35,18 +35,33 @@ if( !OC_User::isLoggedIn()){
exit();
}
$query = OC_DB::prepare("
DELETE FROM *PREFIX*bookmarks
WHERE url LIKE ?
AND user_id = ?
");
$params=array(
urldecode($_GET["url"]),
OC_User::getUser()
);
$result = $query->execute($params);
$query = OC_DB::prepare("
SELECT id FROM *PREFIX*bookmarks
WHERE url LIKE ?
AND user_id = ?
");
$id = $query->execute($params)->fetchOne();
$query = OC_DB::prepare("
DELETE FROM *PREFIX*bookmarks
WHERE id = $id
");
$result = $query->execute();
$query = OC_DB::prepare("
DELETE FROM *PREFIX*bookmarks_tags
WHERE bookmark_id = $id
");
$result = $query->execute();
// var_dump($params);
echo json_encode( array( "status" => "success", "data" => array()));

View File

@ -30,6 +30,6 @@
<?php endif; ?>
<div id="contacts_cardoptions">
<a id="contacts_deletecard"><img class="svg action" src="<?php echo image_path('', 'actions/delete.svg'); ?>" /></a>
<a id="contacts_addproperty"><img class="svg action" src="<?php echo image_path('', 'actions/download.svg'); ?>" /></a>
<a id="contacts_deletecard"><img class="svg action" alt="<?php echo $l->t('Delete');?>" src="<?php echo image_path('', 'actions/delete.svg'); ?>" /></a>
<a id="contacts_addproperty"><img class="svg action" alt="<?php echo $l->t('Download');?>" src="<?php echo image_path('', 'actions/download.svg'); ?>" /></a>
</div>

View File

@ -67,7 +67,7 @@ if ($source !== false) {
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Pragma: public");
header("Content-Disposition: filename='".basename($source)."'");
header("Content-Disposition: filename=".basename($source));
header("Content-Type: " . $mimetype);
header("Content-Length: " . OC_Filesystem::filesize($source));
//download the file
@ -80,4 +80,4 @@ if ($source !== false) {
$tmpl->printPage();
die();
}
?>
?>

View File

@ -117,7 +117,7 @@ $(document).ready(function() {
cache: false,
data: data,
success: function() {
var option = "<option value='"+uid_shared_with+"'>"+uid_shared_with+"</option>";
var option = '<option value="'+uid_shared_with+'">'+uid_shared_with+'</option>';
$(user).remove();
$(option).appendTo('#share_with');
$('#share_with').trigger('liszt:updated');
@ -128,7 +128,7 @@ $(document).ready(function() {
$('#makelink').live('change', function() {
if (this.checked) {
var source = $('#dropdown').data('file');
var uid_shared_with = "public";
var uid_shared_with = 'public';
var permissions = 0;
var data = 'sources='+encodeURIComponent(source)+'&uid_shared_with='+encodeURIComponent(uid_shared_with)+'&permissions='+encodeURIComponent(permissions);
$.ajax({
@ -144,7 +144,7 @@ $(document).ready(function() {
});
} else {
var source = $('#dropdown').data('file');
var uid_shared_with = "public";
var uid_shared_with = 'public';
var data = 'source='+encodeURIComponent(source)+'&uid_shared_with='+encodeURIComponent(uid_shared_with);
$.ajax({
type: 'GET',
@ -165,19 +165,19 @@ $(document).ready(function() {
});
function createDropdown(filename, files) {
var html = "<div id='dropdown' class='drop' data-file='"+files+"'>";
html += "<div id='private'>";
html += "<select data-placeholder='User or Group' style='width:220px;' id='share_with' class='chzen-select'>";
html += "<option value=''></option>";
html += "</select>";
html += "<ul id='shared_list'></ul>";
html += "</div>";
html += "<div id='public'>";
html += "<input type='checkbox' name='makelink' id='makelink' value='1' /><label for='makelink'>make public</label>";
//html += "<input type='checkbox' name='public_link_write' id='public_link_write' value='1' /><label for='public_link_write'>allow upload</label>";
html += "<br />";
html += "<input id='link' style='display:none; width:90%;' />";
html += "</div>";
var html = '<div id="dropdown" class="drop" data-file="'+files+'">';
html += '<div id="private">';
html += '<select data-placeholder="User or Group" style="width:220px;" id="share_with" class="chzen-select">';
html += '<option value=""></option>';
html += '</select>';
html += '<ul id="shared_list"></ul>';
html += '</div>';
html += '<div id="public">';
html += '<input type="checkbox" name="makelink" id="makelink" value="1" /><label for="makelink">make public</label>';
//html += '<input type="checkbox" name="public_link_write" id="public_link_write" value="1" /><label for="public_link_write">allow upload</label>';
html += '<br />';
html += '<input id="link" style="display:none; width:90%;" />';
html += '</div>';
if (filename) {
$('tr[data-file="'+filename+'"]').addClass('mouseOver');
$(html).appendTo($('tr[data-file="'+filename+'"] td.filename'));
@ -211,13 +211,13 @@ function createDropdown(filename, files) {
function addUser(uid_shared_with, permissions, parentFolder) {
if (parentFolder) {
var user = "<li>Parent folder "+parentFolder+" shared with "+uid_shared_with+"</li>";
var user = '<li>Parent folder '+parentFolder+' shared with '+uid_shared_with+'</li>';
} else {
var checked = ((permissions > 0) ? "checked='checked'" : "style='display:none;'");
var style = ((permissions == 0) ? "style='display:none;'" : "");
var user = "<li data-uid_shared_with='"+uid_shared_with+"'>"+uid_shared_with;
user += "<input type='checkbox' name='permissions' id='"+uid_shared_with+"' class='permissions' "+checked+"/><label for='"+uid_shared_with+"' "+style+">can edit</label>";
user += "<a href='' title='Unshare' class='unshare' style='display:none;'><img class='svg' src='"+OC.imagePath('core','actions/delete')+"'/></a></li>";
var checked = ((permissions > 0) ? 'checked="checked"' : 'style="display:none;"');
var style = ((permissions == 0) ? 'style="display:none;"' : '');
var user = '<li data-uid_shared_with="'+uid_shared_with+'">'+uid_shared_with;
user += '<input type="checkbox" name="permissions" id="'+uid_shared_with+'" class="permissions" "+checked+" /><label for="'+uid_shared_with+'" '+style+'>can edit</label>';
user += '<a href="" class="unshare" style="display:none;"><img class="svg" alt="Unshare" src="'+OC.imagePath('core','actions/delete')+'"/></a></li>';
}
$('#share_with option[value="'+uid_shared_with+'"]').remove();
$('#share_with').trigger('liszt:updated');
@ -227,6 +227,6 @@ function addUser(uid_shared_with, permissions, parentFolder) {
function showPublicLink(token) {
$('#makelink').attr('checked', true);
$('#link').data('token', token);
$('#link').val(parent.location.protocol+"//"+location.host+OC.linkTo('files_sharing','get.php')+'?token='+token);
$('#link').val(parent.location.protocol+'//'+location.host+OC.linkTo('files_sharing','get.php')+'?token='+token);
$('#link').show('blind');
}

View File

@ -1,8 +1,8 @@
<?php $TRANSLATIONS = array(
"Music" => "Música",
"Pause" => "Pausa",
"Songs scanned" => "Cançons escanejades",
"Rescan Collection" => "Escaneja de nou la col·lecció",
"Pause" => "Pausa",
"Artist" => "Artista",
"Album" => "Àlbum",
"Title" => "Títol"

View File

@ -1,8 +1,8 @@
<?php $TRANSLATIONS = array(
"Music" => "Musik",
"Pause" => "Pause",
"Songs scanned" => "Sange skannet",
"Rescan Collection" => "Genskan Samling",
"Pause" => "Pause",
"Artist" => "Kunstner",
"Album" => "Album",
"Title" => "Titel"

View File

@ -1,8 +1,8 @@
<?php $TRANSLATIONS = array(
"Music" => "Musik",
"Pause" => "Pause",
"Songs scanned" => "Lieder gescannt",
"Rescan Collection" => "Sammlung scannen",
"Pause" => "Pause",
"Artist" => "Künstler",
"Album" => "Album",
"Title" => "Titel"

View File

@ -1,8 +1,8 @@
<?php $TRANSLATIONS = array(
"Music" => "Μουσική",
"Pause" => "Παύση",
"Songs scanned" => "Σαρωμένα τραγούγια",
"Rescan Collection" => "Επανασάρωση συλλογής",
"Pause" => "Παύση",
"Artist" => "Καλλιτέχνης",
"Album" => "Άλμπουμ",
"Title" => "Τίτλος"

View File

@ -1,8 +1,8 @@
<?php $TRANSLATIONS = array(
"Music" => "Música",
"Pause" => "Pausa",
"Songs scanned" => "Canciones encontradas",
"Rescan Collection" => "Buscar música nueva",
"Pause" => "Pausa",
"Artist" => "Artista",
"Album" => "Álbum",
"Title" => "Título"

View File

@ -1,8 +1,8 @@
<?php $TRANSLATIONS = array(
"Music" => "Musique",
"Pause" => "Pause",
"Songs scanned" => "Pistes scannées",
"Rescan Collection" => "Réanalyser la Collection",
"Pause" => "Pause",
"Artist" => "Artiste",
"Album" => "Album",
"Title" => "Titre"

9
apps/media/l10n/id.php Normal file
View File

@ -0,0 +1,9 @@
<?php $TRANSLATIONS = array(
"Music" => "Musik",
"Pause" => "Jeda",
"Songs scanned" => "Lagu-lagu yang telah dipindai",
"Rescan Collection" => "Pindai ulang Koleksi",
"Artist" => "Artis",
"Album" => "Album",
"Title" => "Judul"
);

View File

@ -1,8 +1,8 @@
<?php $TRANSLATIONS = array(
"Music" => "Muziek",
"Pause" => "Pauze",
"Songs scanned" => "nummers gescanned",
"Rescan Collection" => "Collectie opnieuw scannen",
"Pause" => "Pauze",
"Artist" => "Artiest",
"Album" => "Album",
"Title" => "Titel"

9
apps/media/l10n/pl.php Normal file
View File

@ -0,0 +1,9 @@
<?php $TRANSLATIONS = array(
"Music" => "Muzyka",
"Pause" => "Zatrzymaj",
"Songs scanned" => "Przeskanowane utwory",
"Rescan Collection" => "Przeskanuj kolekcję",
"Artist" => "Artysta",
"Album" => "Album",
"Title" => "Tytuł"
);

View File

@ -1,8 +1,8 @@
<?php $TRANSLATIONS = array(
"Music" => "Música",
"Pause" => "Pausa",
"Songs scanned" => "Músicas encontradas",
"Rescan Collection" => "Atualizar a Coleção",
"Pause" => "Pausa",
"Artist" => "Artista",
"Album" => "Álbum",
"Title" => "Título"

View File

@ -1,8 +1,8 @@
<?php $TRANSLATIONS = array(
"Music" => "Musik",
"Pause" => "Paus",
"Songs scanned" => "Skannade låtar",
"Rescan Collection" => "Sök igenom samlingen",
"Pause" => "Paus",
"Artist" => "Artist",
"Album" => "Album",
"Title" => "Titel"

View File

@ -1,11 +1,11 @@
<div id="controls">
<ul class="jp-controls">
<li><a href="#" class="jp-play action"><img class="svg" src="<?php echo image_path('core', 'actions/play-big.svg'); ?>" /></a></li>
<li><a href="#" class="jp-pause action"><img class="svg" src="<?php echo image_path('core', 'actions/pause-big.svg'); ?>" /></a></li>
<li><a href="#" class="jp-previous action"><img class="svg" src="<?php echo image_path('core', 'actions/play-previous.svg'); ?>" /></a></li>
<li><a href="#" class="jp-next action"><img class="svg" src="<?php echo image_path('core', 'actions/play-next.svg'); ?>" /></a></li>
<li><a href="#" class="jp-mute action"><img class="svg" src="<?php echo image_path('core', 'actions/sound.svg'); ?>" /></a></li>
<li><a href="#" class="jp-unmute action"><img class="svg" src="<?php echo image_path('core', 'actions/sound-off.svg'); ?>" /></a></li>
<li><a href="#" class="jp-play action"><img class="svg" alt="<?php echo $l->t('Play');?>" src="<?php echo image_path('core', 'actions/play-big.svg'); ?>" /></a></li>
<li><a href="#" class="jp-pause action"><img class="svg" alt="<?php echo $l->t('Pause');?>" src="<?php echo image_path('core', 'actions/pause-big.svg'); ?>" /></a></li>
<li><a href="#" class="jp-previous action"><img class="svg" alt="<?php echo $l->t('Previous');?>" src="<?php echo image_path('core', 'actions/play-previous.svg'); ?>" /></a></li>
<li><a href="#" class="jp-next action"><img class="svg" alt="<?php echo $l->t('Next');?>" src="<?php echo image_path('core', 'actions/play-next.svg'); ?>" /></a></li>
<li><a href="#" class="jp-mute action"><img class="svg" alt="<?php echo $l->t('Mute');?>" src="<?php echo image_path('core', 'actions/sound.svg'); ?>" /></a></li>
<li><a href="#" class="jp-unmute action"><img class="svg" alt="<?php echo $l->t('Unmute');?>" src="<?php echo image_path('core', 'actions/sound-off.svg'); ?>" /></a></li>
</ul>
<div class="jp-progress">
<div class="jp-seek-bar">
@ -26,22 +26,24 @@
<div id="rightcontent">
<div id="scan">
<p id="scancount" style="display:none"><span class="songCount">0</span> <?php echo $l->t('Songs scanned')?>
<input type="button" class="start" value="<?php echo $l->t('Rescan Collection')?>"></input>
<input type="button" class="stop" style="display:none" value="<?php echo $l->t('Pause')?>"></input></p>
<input type="button" class="start" value="<?php echo $l->t('Rescan Collection')?>" />
<input type="button" class="stop" style="display:none" value="<?php echo $l->t('Pause')?>" /></p>
<div id="scanprogressbar"></div>
</div>
<table id="collection">
<thead>
<th><?php echo $l->t('Artist')?></th>
<th><?php echo $l->t('Album')?></th>
<th><?php echo $l->t('Title')?></th>
<tr>
<th><?php echo $l->t('Artist')?></th>
<th><?php echo $l->t('Album')?></th>
<th><?php echo $l->t('Title')?></th>
</tr>
</thead>
<tbody>
<tr class="template">
<td class="artist"><a/></td>
<td class="album"><a/></td>
<td class="title"><a/></td>
<td class="artist"><a></a></td>
<td class="album"><a></a></td>
<td class="title"><a></a></td>
</tr>
</tbody>
</table>

View File

@ -101,10 +101,13 @@ 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; background:#f8f8f8; color:#555; text-shadow:#fff 0 1px 0; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; }
#body-settings .personalblock, .pager li a { 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 .personalblock#quota { 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; -moz-border-radius-bottomleft:.4em; -webkit-border-bottom-left-radius:.4em; border-bottom-left-radius:.4em; -moz-border-radius-topleft:.4em; -webkit-border-top-left-radius:.4em; border-top-left-radius:.4em; }
div.jp-play-bar, div.jp-seek-bar { padding:0; }
.pager { list-style:none; margin:1em; float:right; }
.pager li { display:inline-block; margin: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; }

View File

@ -1,4 +1,8 @@
<?php $TRANSLATIONS = array(
"Users" => "Utilisateurs",
"Apps" => "Applications",
"Help" => "Aide",
"Personal" => "Personnel",
"Login failed!" => "Échec de la connexion !",
"remember" => "se souvenir de moi",
"Create an <strong>admin account</strong>" => "Créer un <strong>compte administrateur</strong>",

View File

@ -1,10 +1,27 @@
<?php $TRANSLATIONS = array(
"Users" => "Pengguna",
"Apps" => "Aplikasi",
"Help" => "Bantuan",
"Personal" => "Identitas",
"Login failed!" => "Gagal masuk!",
"remember" => "selalu login",
"Create an <strong>admin account</strong>" => "Buat sebuah <strong>akun admin</strong>",
"Username" => "Username",
"Password" => "Password",
"Configure the database" => "Konfigurasi database",
"will be used" => "akan digunakan",
"Database user" => "Pengguna database",
"Database password" => "Password database",
"Database name" => "Nama database",
"Advanced" => "Tingkat Lanjut",
"Host" => "Host",
"Table prefix" => "Awalan tabel",
"Data folder" => "Folder data",
"Finish setup" => "Selesaikan instalasi",
"Cloud not found" => "Cloud tidak ditemukan",
"gives you the freedom to control your own data on the internet" => "memberikan anda kebebasan dalam mengendalikan data anda di internet",
"prev" => "sebelum",
"next" => "selanjutnya",
"You are logged out." => "Anda telah keluar."
"You are logged out." => "Anda telah keluar.",
"Settings" => "Setelan"
);

View File

@ -1,8 +1,27 @@
<?php $TRANSLATIONS = array(
"Users" => "Użytkownicy",
"Apps" => "Aplikacje",
"Help" => "Pomoc",
"Personal" => "Ustawienia osobiste",
"Login failed!" => "Nie udało się zalogować!",
"remember" => "zapamiętaj",
"Create an <strong>admin account</strong>" => "Stwórz jako <strong>konto administratora</strong>",
"Username" => "Użytkownik",
"Password" => "Hasło",
"Configure the database" => "Konfiguracja bazy danych",
"will be used" => "zostanie użyte",
"Database user" => "Użytkownik bazy danych",
"Database password" => "Hasło do bazy danych",
"Database name" => "Nazwa bazy danych",
"Advanced" => "Zaawansowane",
"Host" => "Host",
"Table prefix" => "Prefiks tablicy",
"Data folder" => "Katalog danych",
"Finish setup" => "Zakończ instalację",
"Cloud not found" => "Konta nie znaleziono ",
"gives you the freedom to control your own data on the internet" => "daje Ci wolność kontroli nad Twoimi danymi w Internecie",
"prev" => "wstecz",
"next" => "dalej",
"You are logged out." => "Jesteś wylogowany."
"You are logged out." => "Zostałeś wylogowany.",
"Settings" => "Ustawienia"
);

View File

@ -31,7 +31,7 @@
<form class="searchbox" action="#" method="post">
<input id="searchbox" class="svg" type="search" name="query" value="<?php if(isset($_POST['query'])){echo $_POST['query'];};?>" autocomplete="off" />
</form>
<a id="logout" href="<?php echo link_to('', 'index.php'); ?>?logout=true"><img class="svg" src="<?php echo image_path('', 'actions/logout.svg'); ?>" /></a>
<a id="logout" href="<?php echo link_to('', 'index.php'); ?>?logout=true"><img class="svg" alt="<?php echo $l->t('Log out');?>" src="<?php echo image_path('', 'actions/logout.svg'); ?>" /></a>
</div></header>
<nav><div id="navigation">
@ -43,7 +43,7 @@
</ul>
<ul id="settings" class="svg">
<img id="expand" class="svg" src="<?php echo image_path('', 'actions/settings.svg'); ?>" />
<img id="expand" class="svg" alt="<?php echo $l->t('Settings');?>" src="<?php echo image_path('', 'actions/settings.svg'); ?>" />
<span style="display:none"><?php echo $l->t('Settings');?></span>
<div id="expanddiv">
<?php foreach($_['settingsnavigation'] as $entry):?>

View File

@ -1,31 +1,22 @@
<center>
<table class="pager" cellspacing="0" cellpadding="0" border="0">
<tr><td width="50%"></td>
<td width="1">
<?php if($_['page']>0):?>
<span class="pagerbutton1"><a href="<?php echo $_['url'].($_['page']-1);?>"><?php echo $l->t( 'prev' ); ?></a>&nbsp;&nbsp;</span>
<?php endif; ?>
</td>
<td width="1">
<?php if ($_['pagestart']>0):?>
...
<?php endif;?>
<?php for ($i=$_['pagestart']; $i < $_['pagestop'];$i++):?>
<?php if ($_['page']!=$i):?>
<a href="<?php echo $_['url'].$i;?>"><?php echo $i+1;?>&nbsp;</a>
<?php else:?>
<?php echo $i+1;?>&nbsp;
<?php endif?>
<?php endfor;?>
<?php if ($_['pagestop']<$_['pagecount']):?>
...
<?php endif;?>
</td>
<td width="1">
<?php if(($_['page']+1)<$_['pagecount']):?>
<span class="pagerbutton2"><a href="<?php echo $_['url'].($_['page']+1);?>"><?php echo $l->t( 'next' ); ?></a></span>
<?php endif; ?>
</td>
<td width="50%"></td></tr>
</table>
</center>
<ol class="pager">
<?php if($_['page']>0):?>
<li class="pagerbutton1"><a href="<?php echo $_['url'].($_['page']-1);?>"><?php echo $l->t( 'prev' ); ?></a></li>
<?php endif; ?>
<?php if ($_['pagestart']>0):?>
&hellip;
<?php endif;?>
<?php for ($i=$_['pagestart']; $i < $_['pagestop'];$i++):?>
<?php if ($_['page']!=$i):?>
<li><a href="<?php echo $_['url'].$i;?>"><?php echo $i+1;?></a></li>
<?php else:?>
<li><?php echo $i+1;?></li>
<?php endif?>
<?php endfor;?>
<?php if ($_['pagestop']<$_['pagecount']):?>
&hellip;
<?php endif;?>
<?php if(($_['page']+1)<$_['pagecount']):?>
<li class="pagerbutton2"><a href="<?php echo $_['url'].($_['page']+1);?>"><?php echo $l->t( 'next' ); ?></a></li>
<?php endif; ?>
</ol>

View File

@ -24,7 +24,7 @@
.file_upload_form, .file_upload_wrapper, .file_upload_start, .file_upload_filename, #file_upload_submit { cursor:pointer; }
/* 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; }
#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%; }
tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; height:1em; }
tbody tr.selected { background-color:#eee; }

View File

@ -81,6 +81,7 @@ $tmpl = new OC_Template( "files", "index", "user" );
$tmpl->assign( "fileList", $list->fetchPage() );
$tmpl->assign( "breadcrumb", $breadcrumbNav->fetchPage() );
$tmpl->assign( 'dir', $dir);
$tmpl->assign( "files", $files );
$tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize);
$tmpl->assign( 'uploadMaxHumanFilesize', OC_Helper::humanFileSize($maxUploadFilesize));
$tmpl->printPage();

View File

@ -5,9 +5,9 @@
<input type="hidden" name="MAX_FILE_SIZE" value="<?php echo $_['uploadMaxFilesize'] ?>" id="max_upload">
<input type="hidden" class="max_human_file_size" value="(max <?php echo $_['uploadMaxHumanFilesize']; ?>)">
<input type="hidden" name="dir" value="<?php echo $_['dir'] ?>" id="dir">
<div class="file_upload_wrapper" class="svg">
<div class="file_upload_wrapper svg">
<input type="submit" class="file_upload_filename" value="<?php echo $l->t('Upload'); ?>"/>
<input class="file_upload_start" class="file_upload_start" type="file" name='files[]'/>
<input class="file_upload_start" type="file" name='files[]'/>
<a href="#" class="file_upload_button_wrapper" onclick="return false;" title="<?php echo 'max. '.$_['uploadMaxHumanFilesize'] ?>"></a>
</div>
<iframe name="file_upload_target_1" class='file_upload_target' src=""></iframe>
@ -21,7 +21,9 @@
</div>
<div id='notification'></div>
<table cellspacing="0">
<div id="emptyfolder" <?php if(count($_['files'])) echo 'style="display:none;"';?>><?php echo $l->t('Nothing in here. Upload something!')?></div>
<table>
<thead>
<tr>
<th id='headerName'>
@ -43,8 +45,6 @@
<div id="uploadsize-message" title="<?php echo $l->t('Upload too large')?>">
<p>
<?php echo $l->t( 'The files you are trying to upload exceed the maximum size for file uploads on this server.' ); ?>
<?php echo $l->t('The files you are trying to upload exceed the maximum size for file uploads on this server.');?>
</p>
</div>
<span id="file_menu"/>

View File

@ -1,4 +1,3 @@
<span id="emptyfolder" <?php if(count($_['files'])) echo 'style="display:none;"';?>><?php echo $l->t('Nothing in here. Upload something!')?></span>
<?php foreach($_['files'] as $file):
$simple_file_size = simple_file_size($file['size']);
$simple_size_color = intval(200-$file['size']/(1024*1024)*2); // the bigger the file, the darker the shade of grey; megabytes*2

View File

@ -8,8 +8,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-08-18 21:07+0200\n"
"PO-Revision-Date: 2011-08-18 19:08+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -99,15 +99,15 @@ msgstr "Завършване на настройките"
msgid "Cloud not found"
msgstr "обклакът не намерен"
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr ""
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "пред."
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "следващо"
@ -115,7 +115,11 @@ msgstr "следващо"
msgid "You are logged out."
msgstr "Вие излязохте."
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr ""

View File

@ -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-08-13 12:41+0200\n"
"PO-Revision-Date: 2011-08-13 02:19+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Bulgarian (Bulgaria) (http://www.transifex.net/projects/p/owncloud/team/bg_BG/)\n"
"MIME-Version: 1.0\n"
@ -20,27 +20,47 @@ msgstr ""
msgid "Music"
msgstr ""
#: templates/music.php:27
msgid "Songs scanned"
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:28
msgid "Rescan Collection"
msgstr ""
#: templates/music.php:29
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr ""
#: templates/music.php:35
msgid "Artist"
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:36
msgid "Album"
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr ""
#: templates/music.php:29
msgid "Rescan Collection"
msgstr ""
#: templates/music.php:37
msgid "Artist"
msgstr ""
#: templates/music.php:38
msgid "Album"
msgstr ""
#: templates/music.php:39
msgid "Title"
msgstr ""

View File

@ -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-19 13:10+0200\n"
"PO-Revision-Date: 2011-08-18 20:01+0000\n"
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/team/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -98,15 +98,15 @@ msgstr "Acaba la configuració"
msgid "Cloud not found"
msgstr "No s'ha trobat el núvol"
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr "us dóna la llibertat per controlar les vostres dades a internet"
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "anterior"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "següent"
@ -114,7 +114,11 @@ msgstr "següent"
msgid "You are logged out."
msgstr "Heu tancat la sessió."
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Arranjament"

View File

@ -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 12:41+0200\n"
"PO-Revision-Date: 2011-08-16 06:18+0000\n"
"Last-Translator: rogerc <rcalvoi@yahoo.com>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Catalan (http://www.transifex.net/projects/p/owncloud/team/ca/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,27 +21,47 @@ msgstr ""
msgid "Music"
msgstr "Música"
#: templates/music.php:27
msgid "Songs scanned"
msgstr "Cançons escanejades"
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:28
msgid "Rescan Collection"
msgstr "Escaneja de nou la col·lecció"
#: templates/music.php:29
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Pausa"
#: templates/music.php:35
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr "Cançons escanejades"
#: templates/music.php:29
msgid "Rescan Collection"
msgstr "Escaneja de nou la col·lecció"
#: templates/music.php:37
msgid "Artist"
msgstr "Artista"
#: templates/music.php:36
#: templates/music.php:38
msgid "Album"
msgstr "Àlbum"
#: templates/music.php:37
#: templates/music.php:39
msgid "Title"
msgstr "Títol"

View File

@ -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-08-18 21:07+0200\n"
"PO-Revision-Date: 2011-08-18 19:08+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+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"
@ -98,15 +98,15 @@ msgstr "Afslut installation"
msgid "Cloud not found"
msgstr "Sky ikke fundet"
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr ""
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "forrige"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "næste"
@ -114,7 +114,11 @@ msgstr "næste"
msgid "You are logged out."
msgstr "Du er nu logget ud"
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Indstillinger"

View File

@ -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 12:41+0200\n"
"PO-Revision-Date: 2011-08-17 17:19+0000\n"
"Last-Translator: pascal_a <pascal@dhermilly.dk>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+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"
@ -21,27 +21,47 @@ msgstr ""
msgid "Music"
msgstr "Musik"
#: templates/music.php:27
msgid "Songs scanned"
msgstr "Sange skannet"
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:28
msgid "Rescan Collection"
msgstr "Genskan Samling"
#: templates/music.php:29
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Pause"
#: templates/music.php:35
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr "Sange skannet"
#: templates/music.php:29
msgid "Rescan Collection"
msgstr "Genskan Samling"
#: templates/music.php:37
msgid "Artist"
msgstr "Kunstner"
#: templates/music.php:36
#: templates/music.php:38
msgid "Album"
msgstr "Album"
#: templates/music.php:37
#: templates/music.php:39
msgid "Title"
msgstr "Titel"

View File

@ -8,8 +8,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-08-19 13:10+0200\n"
"PO-Revision-Date: 2011-08-18 19:25+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+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"
@ -99,16 +99,16 @@ msgstr "Installation abschließen"
msgid "Cloud not found"
msgstr "Cloud nicht verfügbar"
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr ""
"gibt dir die Freiheit, deine eigenen Daten im Internet zu kontrollieren."
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "Zurück"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "Weiter"
@ -116,7 +116,11 @@ msgstr "Weiter"
msgid "You are logged out."
msgstr "Erfolgreich abgemeldet."
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Einstellungen"

View File

@ -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-08-13 05:10+0200\n"
"PO-Revision-Date: 2011-08-13 02:35+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+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"
@ -21,7 +21,31 @@ msgstr ""
msgid "Music"
msgstr "Musik"
#: templates/music.php:27
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Pause"
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr "Lieder gescannt"
@ -29,19 +53,15 @@ msgstr "Lieder gescannt"
msgid "Rescan Collection"
msgstr "Sammlung scannen"
#: templates/music.php:30
msgid "Pause"
msgstr "Pause"
#: templates/music.php:34
#: templates/music.php:37
msgid "Artist"
msgstr "Künstler"
#: templates/music.php:35
#: templates/music.php:38
msgid "Album"
msgstr "Album"
#: templates/music.php:36
#: templates/music.php:39
msgid "Title"
msgstr "Titel"

View File

@ -8,8 +8,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-08-18 21:07+0200\n"
"PO-Revision-Date: 2011-08-18 19:08+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/team/el/)\n"
"MIME-Version: 1.0\n"
@ -99,16 +99,16 @@ msgstr "Ολοκλήρωση εγκατάστασης"
msgid "Cloud not found"
msgstr "Δεν βρέθηκε σύννεφο"
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr ""
"σας δίνει την ελευθερία να ελέγχετε τα δικά σας δεδομένα στο διαδίκτυο"
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "προηγούμενο"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "επόμενο"
@ -116,7 +116,11 @@ msgstr "επόμενο"
msgid "You are logged out."
msgstr "Έχετε αποσυνδεθεί."
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Ρυθμίσεις"

View File

@ -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 12:41+0200\n"
"PO-Revision-Date: 2011-08-13 17:45+0000\n"
"Last-Translator: multipetros <petros.kyladitis@gmail.com>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Greek (http://www.transifex.net/projects/p/owncloud/team/el/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,27 +21,47 @@ msgstr ""
msgid "Music"
msgstr "Μουσική"
#: templates/music.php:27
msgid "Songs scanned"
msgstr "Σαρωμένα τραγούγια"
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:28
msgid "Rescan Collection"
msgstr "Επανασάρωση συλλογής"
#: templates/music.php:29
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Παύση"
#: templates/music.php:35
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr "Σαρωμένα τραγούγια"
#: templates/music.php:29
msgid "Rescan Collection"
msgstr "Επανασάρωση συλλογής"
#: templates/music.php:37
msgid "Artist"
msgstr "Καλλιτέχνης"
#: templates/music.php:36
#: templates/music.php:38
msgid "Album"
msgstr "Άλμπουμ"
#: templates/music.php:37
#: templates/music.php:39
msgid "Title"
msgstr "Τίτλος"

View File

@ -8,8 +8,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-08-18 21:07+0200\n"
"PO-Revision-Date: 2011-08-18 19:08+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/owncloud/team/es/)\n"
"MIME-Version: 1.0\n"
@ -99,15 +99,15 @@ msgstr "Completar la instalación"
msgid "Cloud not found"
msgstr "No se encontró la nube"
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr ""
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "anterior"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "siguiente"
@ -115,7 +115,11 @@ msgstr "siguiente"
msgid "You are logged out."
msgstr "Has cerrado sesión."
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Ajustes"

View File

@ -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 12:41+0200\n"
"PO-Revision-Date: 2011-08-13 21:47+0000\n"
"Last-Translator: xsergiolpx <sergioballesterossolanas@gmail.com>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\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"
@ -21,27 +21,47 @@ msgstr ""
msgid "Music"
msgstr "Música"
#: templates/music.php:27
msgid "Songs scanned"
msgstr "Canciones encontradas"
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:28
msgid "Rescan Collection"
msgstr "Buscar música nueva"
#: templates/music.php:29
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Pausa"
#: templates/music.php:35
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr "Canciones encontradas"
#: templates/music.php:29
msgid "Rescan Collection"
msgstr "Buscar música nueva"
#: templates/music.php:37
msgid "Artist"
msgstr "Artista"
#: templates/music.php:36
#: templates/music.php:38
msgid "Album"
msgstr "Álbum"
#: templates/music.php:37
#: templates/music.php:39
msgid "Title"
msgstr "Título"

View File

@ -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-08-18 21:07+0200\n"
"PO-Revision-Date: 2011-08-18 19:08+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: French (http://www.transifex.net/projects/p/owncloud/team/fr/)\n"
"MIME-Version: 1.0\n"
@ -19,19 +19,19 @@ msgstr ""
#: strings.php:5
msgid "Users"
msgstr ""
msgstr "Utilisateurs"
#: strings.php:6
msgid "Apps"
msgstr ""
msgstr "Applications"
#: strings.php:7
msgid "Help"
msgstr ""
msgstr "Aide"
#: strings.php:8
msgid "Personal"
msgstr ""
msgstr "Personnel"
#: templates/login.php:4
msgid "Login failed!"
@ -98,15 +98,15 @@ msgstr "Terminer l'installation"
msgid "Cloud not found"
msgstr "Introuvable"
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr "vous rend libre de contrôler vos propres données sur internet"
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "précédent"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "suivant"
@ -114,7 +114,11 @@ msgstr "suivant"
msgid "You are logged out."
msgstr "Vous êtes désormais déconnecté."
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Paramètres"

View File

@ -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 05:10+0200\n"
"PO-Revision-Date: 2011-08-13 09:06+0000\n"
"Last-Translator: rom1dep <rom1dep@gmail.com>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\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"
@ -21,7 +21,31 @@ msgstr ""
msgid "Music"
msgstr "Musique"
#: templates/music.php:27
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Pause"
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr "Pistes scannées"
@ -29,19 +53,15 @@ msgstr "Pistes scannées"
msgid "Rescan Collection"
msgstr "Réanalyser la Collection"
#: templates/music.php:30
msgid "Pause"
msgstr "Pause"
#: templates/music.php:34
#: templates/music.php:37
msgid "Artist"
msgstr "Artiste"
#: templates/music.php:35
#: templates/music.php:38
msgid "Album"
msgstr "Album"
#: templates/music.php:36
#: templates/music.php:39
msgid "Title"
msgstr "Titre"

View File

@ -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-08-18 21:07+0200\n"
"PO-Revision-Date: 2011-08-18 19:08+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/team/id/)\n"
"MIME-Version: 1.0\n"
@ -19,19 +19,19 @@ msgstr ""
#: strings.php:5
msgid "Users"
msgstr ""
msgstr "Pengguna"
#: strings.php:6
msgid "Apps"
msgstr ""
msgstr "Aplikasi"
#: strings.php:7
msgid "Help"
msgstr ""
msgstr "Bantuan"
#: strings.php:8
msgid "Personal"
msgstr ""
msgstr "Identitas"
#: templates/login.php:4
msgid "Login failed!"
@ -39,11 +39,11 @@ msgstr "Gagal masuk!"
#: templates/login.php:9 templates/login.php:13
msgid "remember"
msgstr ""
msgstr "selalu login"
#: templates/installation.php:20
msgid "Create an <strong>admin account</strong>"
msgstr ""
msgstr "Buat sebuah <strong>akun admin</strong>"
#: templates/installation.php:21
msgid "Username"
@ -55,24 +55,24 @@ msgstr "Password"
#: templates/installation.php:27
msgid "Configure the database"
msgstr ""
msgstr "Konfigurasi database"
#: templates/installation.php:32 templates/installation.php:43
#: templates/installation.php:53
msgid "will be used"
msgstr ""
msgstr "akan digunakan"
#: templates/installation.php:64
msgid "Database user"
msgstr ""
msgstr "Pengguna database"
#: templates/installation.php:65
msgid "Database password"
msgstr ""
msgstr "Password database"
#: templates/installation.php:66
msgid "Database name"
msgstr ""
msgstr "Nama database"
#: templates/installation.php:74
msgid "Advanced"
@ -80,15 +80,15 @@ msgstr "Tingkat Lanjut"
#: templates/installation.php:77
msgid "Host"
msgstr ""
msgstr "Host"
#: templates/installation.php:78
msgid "Table prefix"
msgstr ""
msgstr "Awalan tabel"
#: templates/installation.php:80
msgid "Data folder"
msgstr ""
msgstr "Folder data"
#: templates/installation.php:83
msgid "Finish setup"
@ -96,17 +96,17 @@ msgstr "Selesaikan instalasi"
#: templates/404.php:12
msgid "Cloud not found"
msgstr ""
msgstr "Cloud tidak ditemukan"
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr ""
msgstr "memberikan anda kebebasan dalam mengendalikan data anda di internet"
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "sebelum"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "selanjutnya"
@ -114,8 +114,12 @@ msgstr "selanjutnya"
msgid "You are logged out."
msgstr "Anda telah keluar."
#: templates/layout.user.php:49
msgid "Settings"
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Setelan"

View File

@ -2,13 +2,14 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Muhammad Radifar <m_radifar05@yahoo.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 12:41+0200\n"
"PO-Revision-Date: 2011-08-18 08:32+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/team/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,30 +19,50 @@ msgstr ""
#: appinfo/app.php:31
msgid "Music"
msgstr "Musik"
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:27
msgid "Songs scanned"
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Jeda"
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Rescan Collection"
msgstr ""
msgid "Songs scanned"
msgstr "Lagu-lagu yang telah dipindai"
#: templates/music.php:29
msgid "Pause"
msgstr ""
#: templates/music.php:35
msgid "Artist"
msgstr ""
#: templates/music.php:36
msgid "Album"
msgstr ""
msgid "Rescan Collection"
msgstr "Pindai ulang Koleksi"
#: templates/music.php:37
msgid "Artist"
msgstr "Artis"
#: templates/music.php:38
msgid "Album"
msgstr "Album"
#: templates/music.php:39
msgid "Title"
msgstr ""
msgstr "Judul"

View File

@ -2,13 +2,14 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# Muhammad Radifar <m_radifar05@yahoo.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-18 18:58+0200\n"
"PO-Revision-Date: 2011-08-18 16:59+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 01:30+0000\n"
"Last-Translator: radifar <m_radifar05@yahoo.com>\n"
"Language-Team: Indonesian (http://www.transifex.net/projects/p/owncloud/team/id/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -18,106 +19,108 @@ msgstr ""
#: ajax/openid.php:13 ajax/setlanguage.php:13
msgid "Authentication error"
msgstr ""
msgstr "Otentikasi bermasalah"
#: ajax/openid.php:21
msgid "OpenID Changed"
msgstr ""
msgstr "OpenID telah dirubah"
#: ajax/openid.php:23 ajax/setlanguage.php:23
msgid "Invalid request"
msgstr ""
msgstr "Permintaan tidak valid"
#: ajax/setlanguage.php:21
msgid "Language changed"
msgstr ""
#: templates/help.php:2
msgid "Problems connecting to help database."
msgstr ""
msgstr "Bahasa telah diganti"
#: templates/help.php:3
msgid "Problems connecting to help database."
msgstr "Bermasalah saat menghubungi database bantuan."
#: templates/help.php:4
msgid "Go there manually."
msgstr ""
msgstr "Pergi kesana secara manual."
#: templates/help.php:11
#: templates/help.php:12
msgid "Answer"
msgstr ""
msgstr "Jawab"
#: templates/help.php:17
#: templates/help.php:16
msgid "Ask a question"
msgstr ""
msgstr "Ajukan pertanyaan"
#: templates/apps.php:12
msgid "Select an App"
msgstr ""
msgstr "Pilih satu aplikasi"
#: templates/apps.php:14
msgid "-licensed"
msgstr ""
msgstr "-terlisensi"
#: templates/apps.php:14
msgid "by"
msgstr ""
msgstr "oleh"
#: templates/personal.php:2
msgid "You use"
msgstr ""
msgstr "Anda menggunakan"
#: templates/personal.php:2
msgid "of the available"
msgstr ""
msgstr "dari yang tersedia"
#: templates/personal.php:7
msgid "Your password got changed"
msgstr ""
msgstr "Password anda telah dirubah"
#: templates/personal.php:9
msgid "Current password"
msgstr ""
msgstr "Password saat ini"
#: templates/personal.php:10
msgid "New password"
msgstr ""
msgstr "Password baru"
#: templates/personal.php:11
msgid "show"
msgstr ""
msgstr "perlihatkan"
#: templates/personal.php:12
msgid "Change password"
msgstr ""
msgstr "Rubah password"
#: templates/personal.php:18
msgid "Language"
msgstr ""
msgstr "Bahasa"
#: templates/personal.php:24
msgid "Help translating"
msgstr ""
msgstr "Bantu terjemahkan"
#: templates/personal.php:30
msgid "use this address to connect to your ownCloud in your file manager"
msgstr ""
"gunakan alamat ini untuk terhubung dengan ownCloud anda dalam file manager "
"anda"
#: templates/users.php:11
msgid "Name"
msgstr ""
msgstr "Nama"
#: templates/users.php:12
msgid "Password"
msgstr ""
msgstr "Password"
#: templates/users.php:13 templates/users.php:28
#: templates/users.php:13 templates/users.php:31
msgid "Groups"
msgstr ""
msgstr "Group"
#: templates/users.php:18
#: templates/users.php:19
msgid "Create"
msgstr ""
msgstr "Buat"
#: templates/users.php:40
#: templates/users.php:43
msgid "Delete"
msgstr ""
msgstr "Hapus"

View File

@ -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-08-18 21:07+0200\n"
"PO-Revision-Date: 2011-08-18 19:08+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/team/it/)\n"
"MIME-Version: 1.0\n"
@ -98,15 +98,15 @@ msgstr "Termina"
msgid "Cloud not found"
msgstr ""
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr ""
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "precedente"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "successivo"
@ -114,7 +114,11 @@ msgstr "successivo"
msgid "You are logged out."
msgstr "Sei uscito."
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Impostazioni"

View File

@ -6,9 +6,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 12:41+0200\n"
"PO-Revision-Date: 2011-08-13 15:44+0000\n"
"Last-Translator: bash <andrea@archlinux.org>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Italian (http://www.transifex.net/projects/p/owncloud/team/it/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,27 +20,47 @@ msgstr ""
msgid "Music"
msgstr "Musica"
#: templates/music.php:27
msgid "Songs scanned"
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:28
msgid "Rescan Collection"
msgstr ""
#: templates/music.php:29
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Pausa"
#: templates/music.php:35
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr ""
#: templates/music.php:29
msgid "Rescan Collection"
msgstr ""
#: templates/music.php:37
msgid "Artist"
msgstr "Artista"
#: templates/music.php:36
#: templates/music.php:38
msgid "Album"
msgstr "Album"
#: templates/music.php:37
#: templates/music.php:39
msgid "Title"
msgstr "Titolo"

View File

@ -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-08-18 21:07+0200\n"
"PO-Revision-Date: 2011-08-18 19:08+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/team/nl/)\n"
"MIME-Version: 1.0\n"
@ -98,15 +98,15 @@ msgstr "Installatie afronden"
msgid "Cloud not found"
msgstr "Cloud niet gevonden"
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr "geeft je de vrijheid om je eigen data te controleren op het internet"
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "vorige"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "volgende"
@ -114,7 +114,11 @@ msgstr "volgende"
msgid "You are logged out."
msgstr "U bent afgemeld."
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Instellingen"

View File

@ -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 12:41+0200\n"
"PO-Revision-Date: 2011-08-14 13:52+0000\n"
"Last-Translator: icewind <icewind1991@gmail.com>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Dutch (http://www.transifex.net/projects/p/owncloud/team/nl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,27 +21,47 @@ msgstr ""
msgid "Music"
msgstr "Muziek"
#: templates/music.php:27
msgid "Songs scanned"
msgstr "nummers gescanned"
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:28
msgid "Rescan Collection"
msgstr "Collectie opnieuw scannen"
#: templates/music.php:29
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Pauze"
#: templates/music.php:35
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr "nummers gescanned"
#: templates/music.php:29
msgid "Rescan Collection"
msgstr "Collectie opnieuw scannen"
#: templates/music.php:37
msgid "Artist"
msgstr "Artiest"
#: templates/music.php:36
#: templates/music.php:38
msgid "Album"
msgstr "Album"
#: templates/music.php:37
#: templates/music.php:39
msgid "Title"
msgstr "Titel"

View File

@ -3,14 +3,15 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Kamil Domański <kdomanski@kdemail.net>, 2011.
# <mosslar@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-18 21:07+0200\n"
"PO-Revision-Date: 2011-08-18 19:08+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/team/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -19,19 +20,19 @@ msgstr ""
#: strings.php:5
msgid "Users"
msgstr ""
msgstr "Użytkownicy"
#: strings.php:6
msgid "Apps"
msgstr ""
msgstr "Aplikacje"
#: strings.php:7
msgid "Help"
msgstr ""
msgstr "Pomoc"
#: strings.php:8
msgid "Personal"
msgstr ""
msgstr "Ustawienia osobiste"
#: templates/login.php:4
msgid "Login failed!"
@ -39,40 +40,40 @@ msgstr "Nie udało się zalogować!"
#: templates/login.php:9 templates/login.php:13
msgid "remember"
msgstr ""
msgstr "zapamiętaj"
#: templates/installation.php:20
msgid "Create an <strong>admin account</strong>"
msgstr ""
msgstr "Stwórz jako <strong>konto administratora</strong>"
#: templates/installation.php:21
msgid "Username"
msgstr ""
msgstr "Użytkownik"
#: templates/installation.php:22
msgid "Password"
msgstr ""
msgstr "Hasło"
#: templates/installation.php:27
msgid "Configure the database"
msgstr ""
msgstr "Konfiguracja bazy danych"
#: templates/installation.php:32 templates/installation.php:43
#: templates/installation.php:53
msgid "will be used"
msgstr ""
msgstr "zostanie użyte"
#: templates/installation.php:64
msgid "Database user"
msgstr ""
msgstr "Użytkownik bazy danych"
#: templates/installation.php:65
msgid "Database password"
msgstr ""
msgstr "Hasło do bazy danych"
#: templates/installation.php:66
msgid "Database name"
msgstr ""
msgstr "Nazwa bazy danych"
#: templates/installation.php:74
msgid "Advanced"
@ -80,15 +81,15 @@ msgstr "Zaawansowane"
#: templates/installation.php:77
msgid "Host"
msgstr ""
msgstr "Host"
#: templates/installation.php:78
msgid "Table prefix"
msgstr ""
msgstr "Prefiks tablicy"
#: templates/installation.php:80
msgid "Data folder"
msgstr ""
msgstr "Katalog danych"
#: templates/installation.php:83
msgid "Finish setup"
@ -96,26 +97,30 @@ msgstr "Zakończ instalację"
#: templates/404.php:12
msgid "Cloud not found"
msgstr ""
msgstr "Konta nie znaleziono "
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr ""
msgstr "daje Ci wolność kontroli nad Twoimi danymi w Internecie"
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "wstecz"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "dalej"
#: templates/logout.php:1
msgid "You are logged out."
msgstr "Jesteś wylogowany."
msgstr "Zostałeś wylogowany."
#: templates/layout.user.php:49
msgid "Settings"
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Ustawienia"

View File

@ -2,14 +2,15 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
#
# <mosslar@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-19 13:10+0200\n"
"PO-Revision-Date: 2011-08-19 11:11+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Polish (http://www.transifex.net/projects/p/owncloud/team/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@ -18,30 +19,50 @@ msgstr ""
#: appinfo/app.php:31
msgid "Music"
msgstr "Muzyka"
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Zatrzymaj"
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr ""
msgstr "Przeskanowane utwory"
#: templates/music.php:29
msgid "Rescan Collection"
msgstr ""
#: templates/music.php:30
msgid "Pause"
msgstr ""
#: templates/music.php:36
msgid "Artist"
msgstr ""
msgstr "Przeskanuj kolekcję"
#: templates/music.php:37
msgid "Album"
msgstr ""
msgid "Artist"
msgstr "Artysta"
#: templates/music.php:38
msgid "Album"
msgstr "Album"
#: templates/music.php:39
msgid "Title"
msgstr ""
msgstr "Tytuł"

View File

@ -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-08-18 21:07+0200\n"
"PO-Revision-Date: 2011-08-18 19:08+0000\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/owncloud/team/pt_BR/)\n"
"MIME-Version: 1.0\n"
@ -98,15 +98,15 @@ msgstr "Concluir configuração"
msgid "Cloud not found"
msgstr "Cloud não encontrado"
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr ""
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "anterior"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "próximo"
@ -114,7 +114,11 @@ msgstr "próximo"
msgid "You are logged out."
msgstr "Você está desconectado."
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Configurações"

View File

@ -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 12:41+0200\n"
"PO-Revision-Date: 2011-08-15 15:44+0000\n"
"Last-Translator: vanderland <transifex@vanderland.com>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Portuguese (Brazilian) (http://www.transifex.net/projects/p/owncloud/team/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -21,27 +21,47 @@ msgstr ""
msgid "Music"
msgstr "Música"
#: templates/music.php:27
msgid "Songs scanned"
msgstr "Músicas encontradas"
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:28
msgid "Rescan Collection"
msgstr "Atualizar a Coleção"
#: templates/music.php:29
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Pausa"
#: templates/music.php:35
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr "Músicas encontradas"
#: templates/music.php:29
msgid "Rescan Collection"
msgstr "Atualizar a Coleção"
#: templates/music.php:37
msgid "Artist"
msgstr "Artista"
#: templates/music.php:36
#: templates/music.php:38
msgid "Album"
msgstr "Álbum"
#: templates/music.php:37
#: templates/music.php:39
msgid "Title"
msgstr "Título"

View File

@ -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-19 13:10+0200\n"
"PO-Revision-Date: 2011-08-18 22:32+0000\n"
"Last-Translator: HakanS <hakan.thn@gmail.com>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/team/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -98,15 +98,15 @@ msgstr "Avsluta installation"
msgid "Cloud not found"
msgstr "Hittade inget moln"
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr "ger dig friheten att hantera ditt eget data på internet"
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr "föregående"
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr "nästa"
@ -114,7 +114,11 @@ msgstr "nästa"
msgid "You are logged out."
msgstr "Du är utloggad"
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr "Inställningar"

View File

@ -6,9 +6,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-18 10:45+0200\n"
"PO-Revision-Date: 2011-08-18 11:19+0000\n"
"Last-Translator: HakanS <hakan.thn@gmail.com>\n"
"POT-Creation-Date: 2011-08-20 05:08+0200\n"
"PO-Revision-Date: 2011-08-20 03:08+0000\n"
"Last-Translator: JanCBorchardt <JanCBorchardt@fsfe.org>\n"
"Language-Team: Swedish (http://www.transifex.net/projects/p/owncloud/team/sv/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,6 +20,30 @@ msgstr ""
msgid "Music"
msgstr "Musik"
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr "Paus"
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr "Skannade låtar"
@ -28,19 +52,15 @@ msgstr "Skannade låtar"
msgid "Rescan Collection"
msgstr "Sök igenom samlingen"
#: templates/music.php:30
msgid "Pause"
msgstr "Paus"
#: templates/music.php:36
#: templates/music.php:37
msgid "Artist"
msgstr "Artist"
#: templates/music.php:37
#: templates/music.php:38
msgid "Album"
msgstr "Album"
#: templates/music.php:38
#: templates/music.php:39
msgid "Title"
msgstr "Titel"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-08-19 13:10+0200\n"
"POT-Creation-Date: 2011-08-20 05:08+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"
@ -98,15 +98,15 @@ msgstr ""
msgid "Cloud not found"
msgstr ""
#: templates/layout.guest.php:38
#: templates/layout.guest.php:35
msgid "gives you the freedom to control your own data on the internet"
msgstr ""
#: templates/part.pagenavi.php:6
#: templates/part.pagenavi.php:3
msgid "prev"
msgstr ""
#: templates/part.pagenavi.php:26
#: templates/part.pagenavi.php:20
msgid "next"
msgstr ""
@ -114,6 +114,10 @@ msgstr ""
msgid "You are logged out."
msgstr ""
#: templates/layout.user.php:49
#: templates/layout.user.php:34
msgid "Log out"
msgstr ""
#: templates/layout.user.php:46 templates/layout.user.php:47
msgid "Settings"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-08-19 13:10+0200\n"
"POT-Creation-Date: 2011-08-20 05:08+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"
@ -25,10 +25,6 @@ msgstr ""
msgid "Maximum upload size"
msgstr ""
#: templates/part.list.php:1
msgid "Nothing in here. Upload something!"
msgstr ""
#: templates/index.php:9
msgid "Upload"
msgstr ""
@ -37,31 +33,35 @@ msgstr ""
msgid "New Folder"
msgstr ""
#: templates/index.php:29
msgid "Name"
#: templates/index.php:24
msgid "Nothing in here. Upload something!"
msgstr ""
#: templates/index.php:31
msgid "Name"
msgstr ""
#: templates/index.php:33
msgid "Download"
msgstr ""
#: templates/index.php:35
#: templates/index.php:37
msgid "Size"
msgstr ""
#: templates/index.php:36
#: templates/index.php:38
msgid "Modified"
msgstr ""
#: templates/index.php:36
#: templates/index.php:38
msgid "Delete"
msgstr ""
#: templates/index.php:44
#: templates/index.php:46
msgid "Upload too large"
msgstr ""
#: templates/index.php:46
#: templates/index.php:48
msgid ""
"The files you are trying to upload exceed the maximum size for file uploads "
"on this server."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-08-19 13:10+0200\n"
"POT-Creation-Date: 2011-08-20 05:08+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"
@ -21,6 +21,30 @@ msgstr ""
msgid "Music"
msgstr ""
#: templates/music.php:3
msgid "Play"
msgstr ""
#: templates/music.php:4 templates/music.php:30
msgid "Pause"
msgstr ""
#: templates/music.php:5
msgid "Previous"
msgstr ""
#: templates/music.php:6
msgid "Next"
msgstr ""
#: templates/music.php:7
msgid "Mute"
msgstr ""
#: templates/music.php:8
msgid "Unmute"
msgstr ""
#: templates/music.php:28
msgid "Songs scanned"
msgstr ""
@ -29,18 +53,14 @@ msgstr ""
msgid "Rescan Collection"
msgstr ""
#: templates/music.php:30
msgid "Pause"
msgstr ""
#: templates/music.php:36
#: templates/music.php:37
msgid "Artist"
msgstr ""
#: templates/music.php:37
#: templates/music.php:38
msgid "Album"
msgstr ""
#: templates/music.php:38
#: templates/music.php:39
msgid "Title"
msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-08-19 13:10+0200\n"
"POT-Creation-Date: 2011-08-20 05:08+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"
@ -109,14 +109,14 @@ msgstr ""
msgid "Password"
msgstr ""
#: templates/users.php:13 templates/users.php:28
#: templates/users.php:13 templates/users.php:31
msgid "Groups"
msgstr ""
#: templates/users.php:18
#: templates/users.php:19
msgid "Create"
msgstr ""
#: templates/users.php:40
#: templates/users.php:43
msgid "Delete"
msgstr ""

View File

@ -23,11 +23,12 @@
// Todo:
// Crypt/decrypt button in the userinterface
// setting if crypto should be on by default
// transparent decrypt/encrpt in filesystem.php
// don't use a password directly as encryption key. but a key which is stored on the server and encrypted with the user password. -> password change faster
// check if the block lenght of the encrypted data stays the same
// - Crypt/decrypt button in the userinterface
// - Setting if crypto should be on by default
// - Add a setting "Don´t encrypt files larger than xx because of performance reasons"
// - Transparent decrypt/encrpt in filesystem.php. Autodetect if a file is encrypted (.encrypted extensio)
// - Don't use a password directly as encryption key. but a key which is stored on the server and encrypted with the user password. -> password change faster
// - IMPORTANT! Check if the block lenght of the encrypted data stays the same
require_once('Crypt_Blowfish/Blowfish.php');

View File

@ -70,8 +70,8 @@ function human_file_size( $bytes ){
function simple_file_size($bytes) {
$mbytes = round($bytes/(1024*1024),1);
if($bytes == 0) { return '0'; }
else if($mbytes < 0.1) { return '< 0.1'; }
else if($mbytes > 1000) { return '> 1000'; }
else if($mbytes < 0.1) { return '&lt; 0.1'; }
else if($mbytes > 1000) { return '&gt; 1000'; }
else { return number_format($mbytes, 1); }
}

View File

@ -131,7 +131,7 @@ $(document).ready(function(){
}
);
var tr=$('#content table tr').first().next().clone();
var tr=$('#content table tbody tr').first().clone();
tr.attr('data-uid',username);
tr.find('td.name').text(username);
var select=$('<select multiple="multiple" data-placehoder="Groups" title="Groups">');
@ -142,10 +142,10 @@ $(document).ready(function(){
select.append($('<option value="'+group+'">'+group+'</option>'));
});
tr.find('td.groups').append(select);
if(tr.find('td.remve img').length==0){
if(tr.find('td.remove img').length==0){
tr.find('td.remove').append($('<img alt="Delete" title="'+t('settings','Delete')+'" class="svg action" src="'+OC.imagePath('core','actions/delete')+'"/>'));
}
applyMultiplySelect(select);
$('#content table tr').last().after(tr);
$('#content table tbody').last().after(tr);
});
});

28
settings/l10n/id.php Normal file
View File

@ -0,0 +1,28 @@
<?php $TRANSLATIONS = array(
"Authentication error" => "Otentikasi bermasalah",
"OpenID Changed" => "OpenID telah dirubah",
"Invalid request" => "Permintaan tidak valid",
"Language changed" => "Bahasa telah diganti",
"Problems connecting to help database." => "Bermasalah saat menghubungi database bantuan.",
"Go there manually." => "Pergi kesana secara manual.",
"Answer" => "Jawab",
"Ask a question" => "Ajukan pertanyaan",
"Select an App" => "Pilih satu aplikasi",
"-licensed" => "-terlisensi",
"by" => "oleh",
"You use" => "Anda menggunakan",
"of the available" => "dari yang tersedia",
"Your password got changed" => "Password anda telah dirubah",
"Current password" => "Password saat ini",
"New password" => "Password baru",
"show" => "perlihatkan",
"Change password" => "Rubah password",
"Language" => "Bahasa",
"Help translating" => "Bantu terjemahkan",
"use this address to connect to your ownCloud in your file manager" => "gunakan alamat ini untuk terhubung dengan ownCloud anda dalam file manager anda",
"Name" => "Nama",
"Password" => "Password",
"Groups" => "Group",
"Create" => "Buat",
"Delete" => "Hapus"
);

View File

@ -12,5 +12,5 @@
<h3><strong><span class="name"><?php echo $l->t('Select an App');?></span></strong><span class="version"></span></h3>
<p class="description"></p>
<p class="hidden"><span class="licence"></span><?php echo $l->t('-licensed');?> <?php echo $l->t('by');?> <span class="author"></span></p>
<input class="enable hidden" type="submit"></input>
<input class="enable hidden" type="submit" />
</div>

View File

@ -1,13 +1,13 @@
<?php if(is_null($_["kbe"])):?>
<div class="personalblock">
<p><?php echo $l->t('Problems connecting to help database.');?>
<a href="http://apps.owncloud.com/kb"><?php echo $l->t('Go there manually.');?></a>
<p><?php echo $l->t('Problems connecting to help database.');?></p>
<p><a href="http://apps.owncloud.com/kb"><?php echo $l->t('Go there manually.');?></a></p>
</div>
<?php else:?>
<?php foreach($_["kbe"] as $kb): ?>
<div class="personalblock">
<?php if($kb["preview1"] <> "") { echo('<img class="preview" src="'.$kb["preview1"].'" />'); } ?>
<p><strong><?php if($kb['detailpage']<>'') echo('<p><a target="_blank" href="'.$kb['detailpage'].'"><strong>'.$kb["name"].'</strong></a></p>');?></strong></p>
<?php if($kb['detailpage']<>'') echo('<p><a target="_blank" href="'.$kb['detailpage'].'"><strong>'.$kb["name"].'</strong></a></p>');?>
<p><?php echo $kb['description'];?></p>
<?php if($kb['answer']<>'') echo('<p><strong>'.$l->t('Answer').':</strong><p>'.$kb['answer'].'</p>');?>
</div>

View File

@ -6,17 +6,20 @@ foreach($_["groups"] as $group) {
?>
<table data-groups="<?php echo implode(', ',$allGroups);?>">
<tbody>
<tr id="controls"><form id="newuser">
<th class="name"><input id="newusername" placeholder="<?php echo $l->t('Name')?>"></input></th>
<th class="password"><input type="password" id="newuserpassword" placeholder="<?php echo $l->t('Password')?>"></input></th>
<thead id="controls">
<tr><form id="newuser">
<th class="name"><input id="newusername" placeholder="<?php echo $l->t('Name')?>" /></th>
<th class="password"><input type="password" id="newuserpassword" placeholder="<?php echo $l->t('Password')?>" /></th>
<th class="groups"><select id="newusergroups" data-placeholder="groups" title="<?php echo $l->t('Groups')?>" multiple="multiple">
<?php foreach($_["groups"] as $group): ?>
<option value="<?php echo $group['name'];?>"><?php echo $group['name'];?></option>
<?php endforeach;?>
</select></th>
<th><input type="submit" value="<?php echo $l->t('Create')?>"></input></th>
<th class="quota"></th>
<th><input type="submit" value="<?php echo $l->t('Create')?>" /></th>
</form></tr>
</thead>
<tbody>
<?php foreach($_["users"] as $user): ?>
<tr data-uid="<?php echo $user["name"] ?>">
<td class="name"><?php echo $user["name"]; ?></td>