From 3fe46706aff12995a49f5b69d0ea3645dae6de7c Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Sun, 2 Jun 2013 19:53:18 +0200 Subject: [PATCH 01/36] Update to jquery.multiselect 1.13 --- core/js/jquery.multiselect.js | 153 ++++++++++++++++++++++------------ 1 file changed, 100 insertions(+), 53 deletions(-) diff --git a/core/js/jquery.multiselect.js b/core/js/jquery.multiselect.js index 46aab7ebf0..16ae426417 100644 --- a/core/js/jquery.multiselect.js +++ b/core/js/jquery.multiselect.js @@ -1,6 +1,7 @@ +/* jshint forin:true, noarg:true, noempty:true, eqeqeq:true, boss:true, undef:true, curly:true, browser:true, jquery:true */ /* - * jQuery MultiSelect UI Widget 1.11 - * Copyright (c) 2011 Eric Hynds + * jQuery MultiSelect UI Widget 1.13 + * Copyright (c) 2012 Eric Hynds * * http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/ * @@ -34,8 +35,8 @@ $.widget("ech.multiselect", { noneSelectedText: 'Select options', selectedText: '# selected', selectedList: 0, - show: '', - hide: '', + show: null, + hide: null, autoOpen: false, multiple: true, position: {} @@ -62,7 +63,7 @@ $.widget("ech.multiselect", { menu = (this.menu = $('
')) .addClass('ui-multiselect-menu ui-widget ui-widget-content ui-corner-all') .addClass( o.classes ) - .insertAfter( button ), + .appendTo( document.body ), header = (this.header = $('
')) .addClass('ui-widget-header ui-corner-all ui-multiselect-header ui-helper-clearfix') @@ -119,70 +120,72 @@ $.widget("ech.multiselect", { menu = this.menu, checkboxContainer = this.checkboxContainer, optgroups = [], - html = [], + html = "", id = el.attr('id') || multiselectID++; // unique ID for the label & option tags // build items - this.element.find('option').each(function( i ){ + el.find('option').each(function( i ){ var $this = $(this), parent = this.parentNode, title = this.innerHTML, description = this.title, value = this.value, - inputID = this.id || 'ui-multiselect-'+id+'-option-'+i, + inputID = 'ui-multiselect-' + (this.id || id + '-option-' + i), isDisabled = this.disabled, isSelected = this.selected, - labelClasses = ['ui-corner-all'], + labelClasses = [ 'ui-corner-all' ], + liClasses = (isDisabled ? 'ui-multiselect-disabled ' : ' ') + this.className, optLabel; // is this an optgroup? - if( parent.tagName.toLowerCase() === 'optgroup' ){ - optLabel = parent.getAttribute('label'); + if( parent.tagName === 'OPTGROUP' ){ + optLabel = parent.getAttribute( 'label' ); // has this optgroup been added already? if( $.inArray(optLabel, optgroups) === -1 ){ - html.push('
  • ' + optLabel + '
  • '); + html += '
  • ' + optLabel + '
  • '; optgroups.push( optLabel ); } } if( isDisabled ){ - labelClasses.push('ui-state-disabled'); + labelClasses.push( 'ui-state-disabled' ); } // browsers automatically select the first option // by default with single selects if( isSelected && !o.multiple ){ - labelClasses.push('ui-state-active'); + labelClasses.push( 'ui-state-active' ); } - html.push('
  • '); + html += '
  • '; // create the label - html.push('
  • '); + html += ' />' + title + ''; }); // insert into the DOM - checkboxContainer.html( html.join('') ); + checkboxContainer.html( html ); // cache some moar useful elements this.labels = menu.find('label'); + this.inputs = this.labels.children('input'); // set widths this._setButtonWidth(); @@ -197,10 +200,10 @@ $.widget("ech.multiselect", { } }, - // updates the button text. call refresh() to rebuild + // updates the button text. call refresh() to rebuild update: function(){ var o = this.options, - $inputs = this.labels.find('input'), + $inputs = this.inputs, $checked = $inputs.filter(':checked'), numChecked = $checked.length, value; @@ -211,7 +214,7 @@ $.widget("ech.multiselect", { if($.isFunction( o.selectedText )){ value = o.selectedText.call(this, numChecked, $inputs.length, $checked.get()); } else if( /\d/.test(o.selectedList) && o.selectedList > 0 && numChecked <= o.selectedList){ - value = $checked.map(function(){ return this.title; }).get().join(', '); + value = $checked.map(function(){ return $(this).next().html(); }).get().join(', '); } else { value = o.selectedText.replace('#', numChecked).replace('#', $inputs.length); } @@ -291,8 +294,8 @@ $.widget("ech.multiselect", { var $this = $(this), $inputs = $this.parent().nextUntil('li.ui-multiselect-optgroup-label').find('input:visible:not(:disabled)'), - nodes = $inputs.get(), - label = $this.parent().text(); + nodes = $inputs.get(), + label = $this.parent().text(); // trigger event and bail if the return is false if( self._trigger('beforeoptgrouptoggle', e, { inputs:nodes, label:label }) === false ){ @@ -343,11 +346,15 @@ $.widget("ech.multiselect", { tags = self.element.find('option'); // bail if this input is disabled or the event is cancelled - if( this.disabled || self._trigger('click', e, { value:val, text:this.title, checked:checked }) === false ){ + if( this.disabled || self._trigger('click', e, { value: val, text: this.title, checked: checked }) === false ){ e.preventDefault(); return; } + // make sure the input has focus. otherwise, the esc key + // won't close the menu after clicking an item. + $this.focus(); + // toggle aria state $this.attr('aria-selected', checked); @@ -389,7 +396,7 @@ $.widget("ech.multiselect", { // handler fires before the form is actually reset. delaying it a bit // gives the form inputs time to clear. $(this.element[0].form).bind('reset.multiselect', function(){ - setTimeout(function(){ self.update(); }, 10); + setTimeout($.proxy(self.refresh, self), 10); }); }, @@ -428,7 +435,7 @@ $.widget("ech.multiselect", { // if at the first/last element if( !$next.length ){ - var $container = this.menu.find('ul:last'); + var $container = this.menu.find('ul').last(); // move to the first/last this.menu.find('label')[ moveToLast ? 'last' : 'first' ]().trigger('mouseover'); @@ -445,27 +452,29 @@ $.widget("ech.multiselect", { // other related attributes of a checkbox. // // The context of this function should be a checkbox; do not proxy it. - _toggleCheckbox: function( prop, flag ){ + _toggleState: function( prop, flag ){ return function(){ - !this.disabled && (this[ prop ] = flag); + if( !this.disabled ) { + this[ prop ] = flag; + } if( flag ){ this.setAttribute('aria-selected', true); } else { this.removeAttribute('aria-selected'); } - } + }; }, _toggleChecked: function( flag, group ){ - var $inputs = (group && group.length) ? - group : - this.labels.find('input'), - + var $inputs = (group && group.length) ? group : this.inputs, self = this; // toggle state on inputs - $inputs.each(this._toggleCheckbox('checked', flag)); + $inputs.each(this._toggleState('checked', flag)); + + // give the first input focus + $inputs.eq(0).focus(); // update button text this.update(); @@ -480,7 +489,7 @@ $.widget("ech.multiselect", { .find('option') .each(function(){ if( !this.disabled && $.inArray(this.value, values) > -1 ){ - self._toggleCheckbox('selected', flag).call( this ); + self._toggleState('selected', flag).call( this ); } }); @@ -494,9 +503,22 @@ $.widget("ech.multiselect", { this.button .attr({ 'disabled':flag, 'aria-disabled':flag })[ flag ? 'addClass' : 'removeClass' ]('ui-state-disabled'); - this.menu - .find('input') - .attr({ 'disabled':flag, 'aria-disabled':flag }) + var inputs = this.menu.find('input'); + var key = "ech-multiselect-disabled"; + + if(flag) { + // remember which elements this widget disabled (not pre-disabled) + // elements, so that they can be restored if the widget is re-enabled. + inputs = inputs.filter(':enabled') + .data(key, true) + } else { + inputs = inputs.filter(function() { + return $.data(this, key) === true; + }).removeData(key); + } + + inputs + .attr({ 'disabled':flag, 'arial-disabled':flag }) .parent()[ flag ? 'addClass' : 'removeClass' ]('ui-state-disabled'); this.element @@ -509,16 +531,17 @@ $.widget("ech.multiselect", { button = this.button, menu = this.menu, speed = this.speed, - o = this.options; + o = this.options, + args = []; // bail if the multiselectopen event returns false, this widget is disabled, or is already open if( this._trigger('beforeopen') === false || button.hasClass('ui-state-disabled') || this._isOpen ){ return; } - var $container = menu.find('ul:last'), + var $container = menu.find('ul').last(), effect = o.show, - pos = button.position(); + pos = button.offset(); // figure out opening effects/speeds if( $.isArray(o.show) ){ @@ -526,6 +549,12 @@ $.widget("ech.multiselect", { speed = o.show[1] || self.speed; } + // if there's an effect, assume jQuery UI is in use + // build the arguments to pass to show() + if( effect ) { + args = [ effect, speed ]; + } + // set the scroll of the checkbox container $container.scrollTop(0).height(o.height); @@ -536,17 +565,19 @@ $.widget("ech.multiselect", { menu .show() .position( o.position ) - .hide() - .show( effect, speed ); + .hide(); // if position utility is not available... } else { menu.css({ - top: pos.top+button.outerHeight(), + top: pos.top + button.outerHeight(), left: pos.left - }).show( effect, speed ); + }); } + // show the menu, maybe with a speed/effect combo + $.fn.show.apply(menu, args); + // select the first option // triggering both mouseover and mouseover because 1.4.2+ has a bug where triggering mouseover // will actually trigger mouseenter. the mouseenter trigger is there for when it's eventually fixed @@ -563,7 +594,10 @@ $.widget("ech.multiselect", { return; } - var o = this.options, effect = o.hide, speed = this.speed; + var o = this.options, + effect = o.hide, + speed = this.speed, + args = []; // figure out opening effects/speeds if( $.isArray(o.hide) ){ @@ -571,7 +605,11 @@ $.widget("ech.multiselect", { speed = o.hide[1] || this.speed; } - this.menu.hide(effect, speed); + if( effect ) { + args = [ effect, speed ]; + } + + $.fn.hide.apply(this.menu, args); this.button.removeClass('ui-state-active').trigger('blur').trigger('mouseleave'); this._isOpen = false; this._trigger('close'); @@ -618,6 +656,10 @@ $.widget("ech.multiselect", { return this.menu; }, + getButton: function(){ + return this.button; + }, + // react to option changes after initialization _setOption: function( key, value ){ var menu = this.menu; @@ -633,7 +675,7 @@ $.widget("ech.multiselect", { menu.find('a.ui-multiselect-none span').eq(-1).text(value); break; case 'height': - menu.find('ul:last').height( parseInt(value,10) ); + menu.find('ul').last().height( parseInt(value,10) ); break; case 'minWidth': this.options[ key ] = parseInt(value,10); @@ -649,6 +691,11 @@ $.widget("ech.multiselect", { case 'classes': menu.add(this.button).removeClass(this.options.classes).addClass(value); break; + case 'multiple': + menu.toggleClass('ui-multiselect-single', !value); + this.options.multiple = value; + this.element[0].multiple = value; + this.refresh(); } $.Widget.prototype._setOption.apply( this, arguments ); From 861fe54f2b33f41b83cf5e714efca72d18ad1b3f Mon Sep 17 00:00:00 2001 From: Thomas Tanghus Date: Tue, 4 Jun 2013 00:19:42 +0200 Subject: [PATCH 02/36] Forgot the css. --- core/css/jquery.multiselect.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/jquery.multiselect.css b/core/css/jquery.multiselect.css index 156799f086..898786a615 100644 --- a/core/css/jquery.multiselect.css +++ b/core/css/jquery.multiselect.css @@ -11,7 +11,7 @@ .ui-multiselect-header span.ui-icon { float:left } .ui-multiselect-header li.ui-multiselect-close { float:right; text-align:right; padding-right:0 } -.ui-multiselect-menu { display:none; padding:3px; position:absolute; z-index:10000 } +.ui-multiselect-menu { display:none; padding:3px; position:absolute; z-index:10000; text-align: left } .ui-multiselect-checkboxes { position:relative /* fixes bug in IE6/7 */; overflow-y:scroll } .ui-multiselect-checkboxes label { cursor:default; display:block; border:1px solid transparent; padding:3px 1px } .ui-multiselect-checkboxes label input { position:relative; top:1px } From fbbb6ef8ef67aae3c82109a6c311deb703f218a7 Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Mon, 17 Jun 2013 23:41:07 +0300 Subject: [PATCH 03/36] Init dummy session first --- lib/base.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/base.php b/lib/base.php index 26e9595e86..fd4870974f 100644 --- a/lib/base.php +++ b/lib/base.php @@ -288,14 +288,14 @@ class OC { $cookie_path = OC::$WEBROOT ?: '/'; ini_set('session.cookie_path', $cookie_path); + //set the session object to a dummy session so code relying on the session existing still works + self::$session = new \OC\Session\Memory(''); + try{ // set the session name to the instance id - which is unique self::$session = new \OC\Session\Internal(OC_Util::getInstanceId()); // if session cant be started break with http 500 error }catch (Exception $e){ - //set the session object to a dummy session so code relying on the session existing still works - self::$session = new \OC\Session\Memory(''); - OC_Log::write('core', 'Session could not be initialized', OC_Log::ERROR); From b2cb81f857cf410a1ed87c3b6e515486e970bafa Mon Sep 17 00:00:00 2001 From: Victor Dubiniuk Date: Tue, 18 Jun 2013 00:17:08 +0300 Subject: [PATCH 04/36] Replace display name only --- settings/js/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/js/users.js b/settings/js/users.js index f3fab34b09..7ed6c50d58 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -88,7 +88,7 @@ var UserList = { tr.attr('data-uid', username); tr.attr('data-displayName', displayname); tr.find('td.name').text(username); - tr.find('td.displayName').text(displayname); + tr.find('td.displayName > span').text(displayname); var groupsSelect = $('').attr('data-username', username).attr('data-user-groups', groups); tr.find('td.groups').empty(); if (tr.find('td.subadmins').length > 0) { From 4a480e4f530abbf52838687ae45a09f28a45b47e Mon Sep 17 00:00:00 2001 From: shkdee Date: Tue, 18 Jun 2013 21:47:47 +0300 Subject: [PATCH 05/36] Update user.php Fixes $_setupedBackends[] into self::$_setupedBackends[] so that setuped backends are REALLY remembered and not instanciated many times. --- lib/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/user.php b/lib/user.php index 06ea8e791d..830f13bb8d 100644 --- a/lib/user.php +++ b/lib/user.php @@ -190,7 +190,7 @@ class OC_User { // use Reflection to create a new instance, using the $args $backend = $reflectionObj->newInstanceArgs($arguments); self::useBackend($backend); - $_setupedBackends[] = $i; + self::$_setupedBackends[] = $i; } else { OC_Log::write('core', 'User backend ' . $class . ' already initialized.', OC_Log::DEBUG); } From 85585ede023e4f8e59c0b01dc5e4552d8ff23ad6 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 19 Jun 2013 01:26:08 +0200 Subject: [PATCH 06/36] allow scanning files for multiple users --- apps/files/ajax/scan.php | 42 +++++++++++++++++++++++++++------------- apps/files/js/files.js | 18 +++++++++++++++-- 2 files changed, 45 insertions(+), 15 deletions(-) diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php index 6659cd459c..d58fd69b9f 100644 --- a/apps/files/ajax/scan.php +++ b/apps/files/ajax/scan.php @@ -4,6 +4,16 @@ session_write_close(); $force = (isset($_GET['force']) and ($_GET['force'] === 'true')); $dir = isset($_GET['dir']) ? $_GET['dir'] : ''; +if (isset($_GET['users'])) { + OC_JSON::checkAdminUser(); + if ($_GET['users'] === 'all') { + $users = OC_User::getUsers(); + } else { + $users = explode(',', $_GET['users']); + } +} else { + $users = array(OC_User::getUser()); +} $eventSource = new OC_EventSource(); ScanListener::$eventSource = $eventSource; @@ -12,21 +22,27 @@ ScanListener::$view = \OC\Files\Filesystem::getView(); OC_Hook::connect('\OC\Files\Cache\Scanner', 'scan_folder', 'ScanListener', 'folder'); OC_Hook::connect('\OC\Files\Cache\Scanner', 'scan_file', 'ScanListener', 'file'); -$absolutePath = \OC\Files\Filesystem::getView()->getAbsolutePath($dir); +foreach ($users as $user) { + $eventSource->send('user', $user); + OC_Util::tearDownFS(); + OC_Util::setupFS($user); -$mountPoints = \OC\Files\Filesystem::getMountPoints($absolutePath); -$mountPoints[] = \OC\Files\Filesystem::getMountPoint($absolutePath); -$mountPoints = array_reverse($mountPoints); //start with the mount point of $dir + $absolutePath = \OC\Files\Filesystem::getView()->getAbsolutePath($dir); -foreach ($mountPoints as $mountPoint) { - $storage = \OC\Files\Filesystem::getStorage($mountPoint); - if ($storage) { - ScanListener::$mountPoints[$storage->getId()] = $mountPoint; - $scanner = $storage->getScanner(); - if ($force) { - $scanner->scan('', \OC\Files\Cache\Scanner::SCAN_RECURSIVE, \OC\Files\Cache\Scanner::REUSE_ETAG); - } else { - $scanner->backgroundScan(); + $mountPoints = \OC\Files\Filesystem::getMountPoints($absolutePath); + $mountPoints[] = \OC\Files\Filesystem::getMountPoint($absolutePath); + $mountPoints = array_reverse($mountPoints); //start with the mount point of $dir + + foreach ($mountPoints as $mountPoint) { + $storage = \OC\Files\Filesystem::getStorage($mountPoint); + if ($storage) { + ScanListener::$mountPoints[$storage->getId()] = $mountPoint; + $scanner = $storage->getScanner(); + if ($force) { + $scanner->scan('', \OC\Files\Cache\Scanner::SCAN_RECURSIVE, \OC\Files\Cache\Scanner::REUSE_ETAG); + } else { + $scanner->backgroundScan(); + } } } } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index a79d34c9b2..ee0d7187ca 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -695,7 +695,7 @@ $(document).ready(function() { } }); -function scanFiles(force, dir){ +function scanFiles(force, dir, users){ if (!OC.currentUser) { return; } @@ -705,7 +705,18 @@ function scanFiles(force, dir){ } force = !!force; //cast to bool scanFiles.scanning = true; - var scannerEventSource = new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force:force,dir:dir}); + var scannerEventSource; + if (users) { + var usersString; + if (users === 'all') { + usersString = users; + } else { + usersString = users.join(','); + } + scannerEventSource = new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force: force,dir: dir, users: usersString}); + } else { + scannerEventSource = new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force: force,dir: dir}); + } scanFiles.cancel = scannerEventSource.close.bind(scannerEventSource); scannerEventSource.listen('count',function(count){ console.log(count + ' files scanned') @@ -717,6 +728,9 @@ function scanFiles(force, dir){ scanFiles.scanning=false; console.log('done after ' + count + ' files'); }); + scannerEventSource.listen('user',function(user){ + console.log('scanning files for ' + user); + }); } scanFiles.scanning=false; From 6778a45d45e7fe0274bc920b2a47800069da49b6 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Wed, 19 Jun 2013 15:02:18 +0200 Subject: [PATCH 07/36] use json to encode user list --- apps/files/ajax/scan.php | 2 +- apps/files/js/files.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files/ajax/scan.php b/apps/files/ajax/scan.php index d58fd69b9f..0706d4e782 100644 --- a/apps/files/ajax/scan.php +++ b/apps/files/ajax/scan.php @@ -9,7 +9,7 @@ if (isset($_GET['users'])) { if ($_GET['users'] === 'all') { $users = OC_User::getUsers(); } else { - $users = explode(',', $_GET['users']); + $users = json_decode($_GET['users']); } } else { $users = array(OC_User::getUser()); diff --git a/apps/files/js/files.js b/apps/files/js/files.js index ee0d7187ca..3438c1c30a 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -711,7 +711,7 @@ function scanFiles(force, dir, users){ if (users === 'all') { usersString = users; } else { - usersString = users.join(','); + usersString = JSON.stringify(users); } scannerEventSource = new OC.EventSource(OC.filePath('files','ajax','scan.php'),{force: force,dir: dir, users: usersString}); } else { From 83d98e2d8b52b8ea975d39ab28bd9b1e14a2a56f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 19 Jun 2013 15:52:33 +0200 Subject: [PATCH 08/36] add some more error messages, in case something went wrong --- apps/files_encryption/lib/crypt.php | 33 +++++++++++++++-------------- apps/files_encryption/lib/util.php | 19 ++++++++++------- 2 files changed, 28 insertions(+), 24 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 945b342a31..4322bbf1af 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -53,19 +53,26 @@ class Crypt { $res = openssl_pkey_new(array('private_key_bits' => 4096)); - // Get private key - openssl_pkey_export($res, $privateKey); + if ($res === false) { + \OCP\Util::writeLog('Encryption library', 'couldn\'t generate users key-pair for ' . \OCP\User::getUser(), \OCP\Util::ERROR); + $result = false; + } else { - // Get public key - $publicKey = openssl_pkey_get_details($res); + // Get private key + openssl_pkey_export($res, $privateKey); - $publicKey = $publicKey['key']; + // Get public key + $publicKey = openssl_pkey_get_details($res); - return (array( - 'publicKey' => $publicKey, - 'privateKey' => $privateKey - )); + $publicKey = $publicKey['key']; + $result = array( + 'publicKey' => $publicKey, + 'privateKey' => $privateKey + ); + } + + return $result; } /** @@ -287,28 +294,22 @@ class Crypt { public static function symmetricEncryptFileContent($plainContent, $passphrase = '') { if (!$plainContent) { - + \OCP\Util::writeLog('Encryption library', 'symmetrically encryption failed, no content given.', \OCP\Util::ERROR); return false; - } $iv = self::generateIv(); if ($encryptedContent = self::encrypt($plainContent, $iv, $passphrase)) { - // Combine content to encrypt with IV identifier and actual IV $catfile = self::concatIv($encryptedContent, $iv); - $padded = self::addPadding($catfile); return $padded; } else { - \OCP\Util::writeLog('Encryption library', 'Encryption (symmetric) of keyfile content failed', \OCP\Util::ERROR); - return false; - } } diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index b4b3923a79..e8e53859bd 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -228,18 +228,21 @@ class Util { // Generate keypair $keypair = Crypt::createKeypair(); - \OC_FileProxy::$enabled = false; + if ($keypair) { - // Save public key - $this->view->file_put_contents($this->publicKeyPath, $keypair['publicKey']); + \OC_FileProxy::$enabled = false; - // Encrypt private key with user pwd as passphrase - $encryptedPrivateKey = Crypt::symmetricEncryptFileContent($keypair['privateKey'], $passphrase); + // Encrypt private key with user pwd as passphrase + $encryptedPrivateKey = Crypt::symmetricEncryptFileContent($keypair['privateKey'], $passphrase); - // Save private key - $this->view->file_put_contents($this->privateKeyPath, $encryptedPrivateKey); + // Save key-pair + if ($encryptedPrivateKey) { + $this->view->file_put_contents($this->privateKeyPath, $encryptedPrivateKey); + $this->view->file_put_contents($this->publicKeyPath, $keypair['publicKey']); + } - \OC_FileProxy::$enabled = true; + \OC_FileProxy::$enabled = true; + } } else { // check if public-key exists but private-key is missing From e2e370f1993ebc4eeac64ce293a992be2205260f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 19 Jun 2013 15:58:34 +0200 Subject: [PATCH 09/36] some more error messages --- apps/files_encryption/lib/crypt.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 4322bbf1af..3e5a97464d 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -56,20 +56,18 @@ class Crypt { if ($res === false) { \OCP\Util::writeLog('Encryption library', 'couldn\'t generate users key-pair for ' . \OCP\User::getUser(), \OCP\Util::ERROR); $result = false; - } else { - - // Get private key - openssl_pkey_export($res, $privateKey); + } elseif (openssl_pkey_export($res, $privateKey)) { // Get public key $publicKey = openssl_pkey_get_details($res); - $publicKey = $publicKey['key']; $result = array( 'publicKey' => $publicKey, 'privateKey' => $privateKey ); + } else { + \OCP\Util::writeLog('Encryption library', 'couldn\'t export users private key, please check your servers openSSL configuration.' . \OCP\User::getUser(), \OCP\Util::ERROR); } return $result; From fe61230cc14b130bc553cf3270df8f3bd8b88d4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Wed, 19 Jun 2013 16:55:31 +0200 Subject: [PATCH 10/36] always have a defined return value --- apps/files_encryption/lib/crypt.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 3e5a97464d..927064012b 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -51,18 +51,18 @@ class Crypt { */ public static function createKeypair() { + $return = false; + $res = openssl_pkey_new(array('private_key_bits' => 4096)); if ($res === false) { \OCP\Util::writeLog('Encryption library', 'couldn\'t generate users key-pair for ' . \OCP\User::getUser(), \OCP\Util::ERROR); - $result = false; } elseif (openssl_pkey_export($res, $privateKey)) { - // Get public key $publicKey = openssl_pkey_get_details($res); $publicKey = $publicKey['key']; - $result = array( + $return = array( 'publicKey' => $publicKey, 'privateKey' => $privateKey ); @@ -70,7 +70,7 @@ class Crypt { \OCP\Util::writeLog('Encryption library', 'couldn\'t export users private key, please check your servers openSSL configuration.' . \OCP\User::getUser(), \OCP\Util::ERROR); } - return $result; + return $return; } /** From ff7e903f82607fdbc73e17dd7bb6bcc2caeb3de7 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Thu, 20 Jun 2013 00:42:34 +0200 Subject: [PATCH 11/36] remove deleted files when re-scanning a folder --- lib/files/cache/scanner.php | 14 ++++++++++++++ tests/lib/files/cache/scanner.php | 10 ++++++++++ 2 files changed, 24 insertions(+) diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index e7fbd856d5..9b94a24f48 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -137,11 +137,20 @@ class Scanner { \OC_Hook::emit('\OC\Files\Cache\Scanner', 'scan_folder', array('path' => $path, 'storage' => $this->storageId)); $size = 0; $childQueue = array(); + $existingChildren = array(); + if ($this->cache->inCache($path)) { + $children = $this->cache->getFolderContents($path); + foreach ($children as $child) { + $existingChildren[] = $child['name']; + } + } + $newChildren = array(); if ($this->storage->is_dir($path) && ($dh = $this->storage->opendir($path))) { \OC_DB::beginTransaction(); while ($file = readdir($dh)) { $child = ($path) ? $path . '/' . $file : $file; if (!Filesystem::isIgnoredDir($file)) { + $newChildren[] = $file; $data = $this->scanFile($child, $reuse); if ($data) { if ($data['size'] === -1) { @@ -156,6 +165,11 @@ class Scanner { } } } + $removedChildren = \array_diff($existingChildren, $newChildren); + foreach ($removedChildren as $childName) { + $child = ($path) ? $path . '/' . $childName : $childName; + $this->cache->remove($child); + } \OC_DB::commit(); foreach ($childQueue as $child) { $childSize = $this->scanChildren($child, self::SCAN_RECURSIVE); diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php index 3dacefa2b8..3ee7f099f3 100644 --- a/tests/lib/files/cache/scanner.php +++ b/tests/lib/files/cache/scanner.php @@ -144,6 +144,16 @@ class Scanner extends \PHPUnit_Framework_TestCase { $this->assertEquals(-1, $newData['size']); } + public function testRemovedFile() { + $this->fillTestFolders(); + + $this->scanner->scan(''); + $this->assertTrue($this->cache->inCache('foo.txt')); + $this->storage->unlink('foo.txt'); + $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW); + $this->assertFalse($this->cache->inCache('foo.txt')); + } + function setUp() { $this->storage = new \OC\Files\Storage\Temporary(array()); $this->scanner = new \OC\Files\Cache\Scanner($this->storage); From 01ab79d460df5acc7f9793f0b9f346ea7b7915dc Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 20 Jun 2013 02:43:39 +0200 Subject: [PATCH 12/36] [tx-robot] updated from transifex --- apps/files_encryption/l10n/de_DE.php | 6 ++ apps/files_encryption/l10n/it.php | 20 ++--- apps/files_encryption/l10n/ru.php | 5 ++ apps/files_encryption/l10n/sv.php | 1 + apps/files_external/l10n/ko.php | 3 + apps/files_versions/l10n/ko.php | 14 ++-- apps/user_ldap/l10n/ru.php | 3 + apps/user_webdavauth/l10n/de_DE.php | 1 + core/l10n/ca.php | 1 - core/l10n/cs_CZ.php | 1 - core/l10n/de_DE.php | 1 + core/l10n/es.php | 1 - core/l10n/fr.php | 1 - core/l10n/gl.php | 1 - core/l10n/hu_HU.php | 4 + core/l10n/it.php | 9 +- core/l10n/ja_JP.php | 1 - core/l10n/ru.php | 4 + core/l10n/sv.php | 1 - l10n/af_ZA/core.po | 16 ++-- l10n/af_ZA/lib.po | 4 +- l10n/af_ZA/settings.po | 74 +++++++++-------- l10n/ar/core.po | 16 ++-- l10n/ar/files.po | 4 +- l10n/ar/files_external.po | 4 +- l10n/ar/files_sharing.po | 4 +- l10n/ar/files_trashbin.po | 4 +- l10n/ar/lib.po | 4 +- l10n/ar/settings.po | 10 ++- l10n/ar/user_ldap.po | 4 +- l10n/be/core.po | 16 ++-- l10n/be/settings.po | 74 +++++++++-------- l10n/bg_BG/core.po | 16 ++-- l10n/bg_BG/files.po | 4 +- l10n/bg_BG/files_external.po | 4 +- l10n/bg_BG/files_sharing.po | 4 +- l10n/bg_BG/files_trashbin.po | 4 +- l10n/bg_BG/lib.po | 4 +- l10n/bg_BG/settings.po | 10 ++- l10n/bg_BG/user_ldap.po | 4 +- l10n/bn_BD/core.po | 16 ++-- l10n/bn_BD/files.po | 4 +- l10n/bn_BD/files_external.po | 4 +- l10n/bn_BD/files_sharing.po | 4 +- l10n/bn_BD/files_trashbin.po | 4 +- l10n/bn_BD/lib.po | 4 +- l10n/bn_BD/settings.po | 10 ++- l10n/bn_BD/user_ldap.po | 4 +- l10n/bs/core.po | 16 ++-- l10n/bs/files.po | 4 +- l10n/bs/files_trashbin.po | 4 +- l10n/bs/settings.po | 10 ++- l10n/ca/core.po | 20 ++--- l10n/ca/files.po | 4 +- l10n/ca/files_external.po | 4 +- l10n/ca/files_sharing.po | 4 +- l10n/ca/files_trashbin.po | 4 +- l10n/ca/lib.po | 4 +- l10n/ca/settings.po | 12 ++- l10n/ca/user_ldap.po | 4 +- l10n/cs_CZ/core.po | 20 ++--- l10n/cs_CZ/files.po | 4 +- l10n/cs_CZ/files_external.po | 4 +- l10n/cs_CZ/files_sharing.po | 4 +- l10n/cs_CZ/files_trashbin.po | 4 +- l10n/cs_CZ/lib.po | 4 +- l10n/cs_CZ/settings.po | 12 ++- l10n/cs_CZ/user_ldap.po | 4 +- l10n/cy_GB/core.po | 16 ++-- l10n/cy_GB/files.po | 4 +- l10n/cy_GB/files_external.po | 4 +- l10n/cy_GB/files_sharing.po | 4 +- l10n/cy_GB/files_trashbin.po | 4 +- l10n/cy_GB/lib.po | 4 +- l10n/cy_GB/settings.po | 10 ++- l10n/cy_GB/user_ldap.po | 4 +- l10n/da/core.po | 16 ++-- l10n/da/files.po | 4 +- l10n/da/files_external.po | 4 +- l10n/da/files_sharing.po | 4 +- l10n/da/files_trashbin.po | 4 +- l10n/da/lib.po | 4 +- l10n/da/settings.po | 12 ++- l10n/da/user_ldap.po | 4 +- l10n/de/core.po | 16 ++-- l10n/de/files.po | 4 +- l10n/de/files_external.po | 4 +- l10n/de/files_sharing.po | 4 +- l10n/de/files_trashbin.po | 4 +- l10n/de/lib.po | 4 +- l10n/de/settings.po | 10 ++- l10n/de/user_ldap.po | 4 +- l10n/de_DE/core.po | 18 ++-- l10n/de_DE/files.po | 4 +- l10n/de_DE/files_encryption.po | 18 ++-- l10n/de_DE/files_external.po | 4 +- l10n/de_DE/files_sharing.po | 4 +- l10n/de_DE/files_trashbin.po | 4 +- l10n/de_DE/lib.po | 4 +- l10n/de_DE/settings.po | 10 ++- l10n/de_DE/user_ldap.po | 4 +- l10n/de_DE/user_webdavauth.po | 8 +- l10n/el/core.po | 16 ++-- l10n/el/files.po | 4 +- l10n/el/files_external.po | 4 +- l10n/el/files_sharing.po | 4 +- l10n/el/files_trashbin.po | 4 +- l10n/el/lib.po | 4 +- l10n/el/settings.po | 10 ++- l10n/el/user_ldap.po | 4 +- l10n/en@pirate/core.po | 16 ++-- l10n/en@pirate/files.po | 4 +- l10n/en@pirate/files_sharing.po | 4 +- l10n/en@pirate/settings.po | 74 +++++++++-------- l10n/eo/core.po | 16 ++-- l10n/eo/files.po | 4 +- l10n/eo/files_external.po | 4 +- l10n/eo/files_sharing.po | 4 +- l10n/eo/files_trashbin.po | 4 +- l10n/eo/lib.po | 4 +- l10n/eo/settings.po | 10 ++- l10n/eo/user_ldap.po | 4 +- l10n/es/core.po | 20 ++--- l10n/es/files.po | 4 +- l10n/es/files_external.po | 4 +- l10n/es/files_sharing.po | 4 +- l10n/es/files_trashbin.po | 4 +- l10n/es/lib.po | 4 +- l10n/es/settings.po | 12 ++- l10n/es/user_ldap.po | 4 +- l10n/es_AR/core.po | 16 ++-- l10n/es_AR/files.po | 4 +- l10n/es_AR/files_external.po | 4 +- l10n/es_AR/files_sharing.po | 4 +- l10n/es_AR/files_trashbin.po | 4 +- l10n/es_AR/lib.po | 4 +- l10n/es_AR/settings.po | 12 ++- l10n/es_AR/user_ldap.po | 4 +- l10n/et_EE/core.po | 16 ++-- l10n/et_EE/files.po | 4 +- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/files_sharing.po | 4 +- l10n/et_EE/files_trashbin.po | 4 +- l10n/et_EE/lib.po | 4 +- l10n/et_EE/settings.po | 12 ++- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/core.po | 16 ++-- l10n/eu/files.po | 4 +- l10n/eu/files_external.po | 4 +- l10n/eu/files_sharing.po | 4 +- l10n/eu/files_trashbin.po | 4 +- l10n/eu/lib.po | 4 +- l10n/eu/settings.po | 10 ++- l10n/eu/user_ldap.po | 4 +- l10n/fa/core.po | 16 ++-- l10n/fa/files.po | 4 +- l10n/fa/files_external.po | 4 +- l10n/fa/files_sharing.po | 4 +- l10n/fa/files_trashbin.po | 4 +- l10n/fa/lib.po | 4 +- l10n/fa/settings.po | 10 ++- l10n/fa/user_ldap.po | 4 +- l10n/fi_FI/core.po | 16 ++-- l10n/fi_FI/files.po | 4 +- l10n/fi_FI/files_external.po | 4 +- l10n/fi_FI/files_sharing.po | 4 +- l10n/fi_FI/files_trashbin.po | 4 +- l10n/fi_FI/lib.po | 4 +- l10n/fi_FI/settings.po | 10 ++- l10n/fi_FI/user_ldap.po | 4 +- l10n/fr/core.po | 20 ++--- l10n/fr/files.po | 4 +- l10n/fr/files_external.po | 4 +- l10n/fr/files_sharing.po | 4 +- l10n/fr/files_trashbin.po | 4 +- l10n/fr/lib.po | 4 +- l10n/fr/settings.po | 12 ++- l10n/fr/user_ldap.po | 4 +- l10n/gl/core.po | 20 ++--- l10n/gl/files.po | 4 +- l10n/gl/files_external.po | 4 +- l10n/gl/files_sharing.po | 4 +- l10n/gl/files_trashbin.po | 4 +- l10n/gl/lib.po | 4 +- l10n/gl/settings.po | 12 ++- l10n/gl/user_ldap.po | 4 +- l10n/he/core.po | 16 ++-- l10n/he/files.po | 4 +- l10n/he/files_external.po | 4 +- l10n/he/files_sharing.po | 4 +- l10n/he/files_trashbin.po | 4 +- l10n/he/lib.po | 4 +- l10n/he/settings.po | 10 ++- l10n/he/user_ldap.po | 4 +- l10n/hi/core.po | 16 ++-- l10n/hi/files.po | 4 +- l10n/hi/lib.po | 4 +- l10n/hi/settings.po | 74 +++++++++-------- l10n/hr/core.po | 16 ++-- l10n/hr/files.po | 4 +- l10n/hr/files_external.po | 4 +- l10n/hr/files_sharing.po | 4 +- l10n/hr/files_trashbin.po | 4 +- l10n/hr/lib.po | 4 +- l10n/hr/settings.po | 10 ++- l10n/hr/user_ldap.po | 4 +- l10n/hu_HU/core.po | 24 +++--- l10n/hu_HU/files.po | 4 +- l10n/hu_HU/files_external.po | 4 +- l10n/hu_HU/files_sharing.po | 4 +- l10n/hu_HU/files_trashbin.po | 4 +- l10n/hu_HU/lib.po | 4 +- l10n/hu_HU/settings.po | 12 ++- l10n/hu_HU/user_ldap.po | 4 +- l10n/hy/core.po | 16 ++-- l10n/hy/files.po | 4 +- l10n/hy/files_external.po | 2 +- l10n/hy/files_sharing.po | 4 +- l10n/hy/files_trashbin.po | 2 +- l10n/hy/settings.po | 10 ++- l10n/ia/core.po | 16 ++-- l10n/ia/files.po | 4 +- l10n/ia/files_external.po | 4 +- l10n/ia/files_sharing.po | 4 +- l10n/ia/files_trashbin.po | 4 +- l10n/ia/lib.po | 4 +- l10n/ia/settings.po | 10 ++- l10n/ia/user_ldap.po | 4 +- l10n/id/core.po | 16 ++-- l10n/id/files.po | 4 +- l10n/id/files_external.po | 4 +- l10n/id/files_sharing.po | 4 +- l10n/id/files_trashbin.po | 4 +- l10n/id/lib.po | 4 +- l10n/id/settings.po | 10 ++- l10n/id/user_ldap.po | 4 +- l10n/is/core.po | 16 ++-- l10n/is/files.po | 4 +- l10n/is/files_external.po | 4 +- l10n/is/files_sharing.po | 4 +- l10n/is/files_trashbin.po | 4 +- l10n/is/lib.po | 4 +- l10n/is/settings.po | 10 ++- l10n/is/user_ldap.po | 4 +- l10n/it/core.po | 28 +++---- l10n/it/files.po | 4 +- l10n/it/files_encryption.po | 26 +++--- l10n/it/files_external.po | 4 +- l10n/it/files_sharing.po | 4 +- l10n/it/files_trashbin.po | 4 +- l10n/it/lib.po | 4 +- l10n/it/settings.po | 12 ++- l10n/it/user_ldap.po | 4 +- l10n/it/user_webdavauth.po | 6 +- l10n/ja_JP/core.po | 20 ++--- l10n/ja_JP/files.po | 4 +- l10n/ja_JP/files_external.po | 4 +- l10n/ja_JP/files_sharing.po | 4 +- l10n/ja_JP/files_trashbin.po | 4 +- l10n/ja_JP/lib.po | 4 +- l10n/ja_JP/settings.po | 12 ++- l10n/ja_JP/user_ldap.po | 4 +- l10n/ka/core.po | 16 ++-- l10n/ka/files.po | 4 +- l10n/ka/files_sharing.po | 4 +- l10n/ka/settings.po | 74 +++++++++-------- l10n/ka_GE/core.po | 16 ++-- l10n/ka_GE/files.po | 4 +- l10n/ka_GE/files_external.po | 4 +- l10n/ka_GE/files_sharing.po | 4 +- l10n/ka_GE/files_trashbin.po | 4 +- l10n/ka_GE/lib.po | 4 +- l10n/ka_GE/settings.po | 10 ++- l10n/ka_GE/user_ldap.po | 4 +- l10n/kn/core.po | 16 ++-- l10n/kn/settings.po | 74 +++++++++-------- l10n/ko/core.po | 16 ++-- l10n/ko/files.po | 4 +- l10n/ko/files_external.po | 13 +-- l10n/ko/files_sharing.po | 6 +- l10n/ko/files_trashbin.po | 4 +- l10n/ko/files_versions.po | 21 ++--- l10n/ko/lib.po | 8 +- l10n/ko/settings.po | 119 ++++++++++++++------------- l10n/ko/user_ldap.po | 4 +- l10n/ku_IQ/core.po | 16 ++-- l10n/ku_IQ/files.po | 4 +- l10n/ku_IQ/files_sharing.po | 4 +- l10n/ku_IQ/files_trashbin.po | 4 +- l10n/ku_IQ/lib.po | 4 +- l10n/ku_IQ/settings.po | 10 ++- l10n/ku_IQ/user_ldap.po | 4 +- l10n/lb/core.po | 16 ++-- l10n/lb/files.po | 4 +- l10n/lb/files_external.po | 4 +- l10n/lb/files_sharing.po | 4 +- l10n/lb/files_trashbin.po | 4 +- l10n/lb/lib.po | 4 +- l10n/lb/settings.po | 10 ++- l10n/lb/user_ldap.po | 4 +- l10n/lt_LT/core.po | 16 ++-- l10n/lt_LT/files.po | 4 +- l10n/lt_LT/files_external.po | 4 +- l10n/lt_LT/files_sharing.po | 4 +- l10n/lt_LT/files_trashbin.po | 4 +- l10n/lt_LT/lib.po | 4 +- l10n/lt_LT/settings.po | 10 ++- l10n/lt_LT/user_ldap.po | 4 +- l10n/lv/core.po | 16 ++-- l10n/lv/files.po | 4 +- l10n/lv/files_external.po | 4 +- l10n/lv/files_sharing.po | 4 +- l10n/lv/files_trashbin.po | 4 +- l10n/lv/lib.po | 4 +- l10n/lv/settings.po | 10 ++- l10n/lv/user_ldap.po | 4 +- l10n/mk/core.po | 16 ++-- l10n/mk/files.po | 4 +- l10n/mk/files_external.po | 4 +- l10n/mk/files_sharing.po | 4 +- l10n/mk/files_trashbin.po | 4 +- l10n/mk/lib.po | 4 +- l10n/mk/settings.po | 10 ++- l10n/mk/user_ldap.po | 4 +- l10n/ms_MY/core.po | 16 ++-- l10n/ms_MY/files.po | 4 +- l10n/ms_MY/files_external.po | 4 +- l10n/ms_MY/files_sharing.po | 4 +- l10n/ms_MY/files_trashbin.po | 4 +- l10n/ms_MY/lib.po | 4 +- l10n/ms_MY/settings.po | 10 ++- l10n/ms_MY/user_ldap.po | 4 +- l10n/my_MM/core.po | 16 ++-- l10n/my_MM/files.po | 4 +- l10n/my_MM/files_sharing.po | 4 +- l10n/my_MM/lib.po | 4 +- l10n/my_MM/settings.po | 74 +++++++++-------- l10n/nb_NO/core.po | 16 ++-- l10n/nb_NO/files.po | 4 +- l10n/nb_NO/files_external.po | 4 +- l10n/nb_NO/files_sharing.po | 4 +- l10n/nb_NO/files_trashbin.po | 4 +- l10n/nb_NO/lib.po | 4 +- l10n/nb_NO/settings.po | 10 ++- l10n/nb_NO/user_ldap.po | 4 +- l10n/ne/core.po | 16 ++-- l10n/ne/settings.po | 74 +++++++++-------- l10n/nl/core.po | 18 ++-- l10n/nl/files.po | 4 +- l10n/nl/files_external.po | 4 +- l10n/nl/files_sharing.po | 4 +- l10n/nl/files_trashbin.po | 4 +- l10n/nl/lib.po | 4 +- l10n/nl/settings.po | 12 ++- l10n/nl/user_ldap.po | 4 +- l10n/nn_NO/core.po | 16 ++-- l10n/nn_NO/files.po | 4 +- l10n/nn_NO/files_external.po | 4 +- l10n/nn_NO/files_sharing.po | 4 +- l10n/nn_NO/files_trashbin.po | 4 +- l10n/nn_NO/lib.po | 4 +- l10n/nn_NO/settings.po | 10 ++- l10n/nn_NO/user_ldap.po | 4 +- l10n/oc/core.po | 16 ++-- l10n/oc/files.po | 4 +- l10n/oc/files_external.po | 4 +- l10n/oc/files_sharing.po | 4 +- l10n/oc/files_trashbin.po | 4 +- l10n/oc/lib.po | 4 +- l10n/oc/settings.po | 10 ++- l10n/oc/user_ldap.po | 4 +- l10n/pl/core.po | 18 ++-- l10n/pl/files.po | 4 +- l10n/pl/files_external.po | 4 +- l10n/pl/files_sharing.po | 4 +- l10n/pl/files_trashbin.po | 4 +- l10n/pl/lib.po | 4 +- l10n/pl/settings.po | 12 ++- l10n/pl/user_ldap.po | 4 +- l10n/pt_BR/core.po | 16 ++-- l10n/pt_BR/files.po | 4 +- l10n/pt_BR/files_external.po | 4 +- l10n/pt_BR/files_sharing.po | 4 +- l10n/pt_BR/files_trashbin.po | 4 +- l10n/pt_BR/lib.po | 4 +- l10n/pt_BR/settings.po | 12 ++- l10n/pt_BR/user_ldap.po | 4 +- l10n/pt_PT/core.po | 16 ++-- l10n/pt_PT/files.po | 4 +- l10n/pt_PT/files_external.po | 4 +- l10n/pt_PT/files_sharing.po | 4 +- l10n/pt_PT/files_trashbin.po | 4 +- l10n/pt_PT/lib.po | 4 +- l10n/pt_PT/settings.po | 12 ++- l10n/pt_PT/user_ldap.po | 4 +- l10n/ro/core.po | 16 ++-- l10n/ro/files.po | 4 +- l10n/ro/files_external.po | 4 +- l10n/ro/files_sharing.po | 4 +- l10n/ro/files_trashbin.po | 4 +- l10n/ro/lib.po | 4 +- l10n/ro/settings.po | 10 ++- l10n/ro/user_ldap.po | 4 +- l10n/ru/core.po | 25 +++--- l10n/ru/files.po | 4 +- l10n/ru/files_encryption.po | 17 ++-- l10n/ru/files_external.po | 4 +- l10n/ru/files_sharing.po | 4 +- l10n/ru/files_trashbin.po | 4 +- l10n/ru/lib.po | 4 +- l10n/ru/settings.po | 13 ++- l10n/ru/user_ldap.po | 13 +-- l10n/si_LK/core.po | 16 ++-- l10n/si_LK/files.po | 4 +- l10n/si_LK/files_external.po | 4 +- l10n/si_LK/files_sharing.po | 4 +- l10n/si_LK/files_trashbin.po | 4 +- l10n/si_LK/lib.po | 4 +- l10n/si_LK/settings.po | 10 ++- l10n/si_LK/user_ldap.po | 4 +- l10n/sk/core.po | 16 ++-- l10n/sk/settings.po | 74 +++++++++-------- l10n/sk_SK/core.po | 16 ++-- l10n/sk_SK/files.po | 4 +- l10n/sk_SK/files_external.po | 4 +- l10n/sk_SK/files_sharing.po | 4 +- l10n/sk_SK/files_trashbin.po | 4 +- l10n/sk_SK/lib.po | 4 +- l10n/sk_SK/settings.po | 10 ++- l10n/sk_SK/user_ldap.po | 4 +- l10n/sl/core.po | 16 ++-- l10n/sl/files.po | 4 +- l10n/sl/files_external.po | 4 +- l10n/sl/files_sharing.po | 4 +- l10n/sl/files_trashbin.po | 4 +- l10n/sl/lib.po | 4 +- l10n/sl/settings.po | 10 ++- l10n/sl/user_ldap.po | 4 +- l10n/sq/core.po | 16 ++-- l10n/sq/files.po | 4 +- l10n/sq/files_external.po | 4 +- l10n/sq/files_sharing.po | 4 +- l10n/sq/files_trashbin.po | 4 +- l10n/sq/lib.po | 4 +- l10n/sq/settings.po | 10 ++- l10n/sq/user_ldap.po | 4 +- l10n/sr/core.po | 16 ++-- l10n/sr/files.po | 4 +- l10n/sr/files_external.po | 4 +- l10n/sr/files_sharing.po | 4 +- l10n/sr/files_trashbin.po | 4 +- l10n/sr/lib.po | 4 +- l10n/sr/settings.po | 10 ++- l10n/sr/user_ldap.po | 4 +- l10n/sr@latin/core.po | 16 ++-- l10n/sr@latin/files.po | 4 +- l10n/sr@latin/files_external.po | 4 +- l10n/sr@latin/files_sharing.po | 4 +- l10n/sr@latin/files_trashbin.po | 4 +- l10n/sr@latin/lib.po | 4 +- l10n/sr@latin/settings.po | 10 ++- l10n/sv/core.po | 20 ++--- l10n/sv/files.po | 4 +- l10n/sv/files_encryption.po | 6 +- l10n/sv/files_external.po | 4 +- l10n/sv/files_sharing.po | 4 +- l10n/sv/files_trashbin.po | 4 +- l10n/sv/lib.po | 4 +- l10n/sv/settings.po | 12 ++- l10n/sv/user_ldap.po | 4 +- l10n/sw_KE/core.po | 16 ++-- l10n/sw_KE/settings.po | 74 +++++++++-------- l10n/ta_LK/core.po | 16 ++-- l10n/ta_LK/files.po | 4 +- l10n/ta_LK/files_external.po | 4 +- l10n/ta_LK/files_sharing.po | 4 +- l10n/ta_LK/files_trashbin.po | 4 +- l10n/ta_LK/lib.po | 4 +- l10n/ta_LK/settings.po | 10 ++- l10n/ta_LK/user_ldap.po | 4 +- l10n/te/core.po | 16 ++-- l10n/te/files.po | 4 +- l10n/te/files_external.po | 4 +- l10n/te/files_trashbin.po | 4 +- l10n/te/lib.po | 4 +- l10n/te/settings.po | 10 ++- l10n/te/user_ldap.po | 4 +- l10n/templates/core.pot | 14 ++-- l10n/templates/files.pot | 2 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 8 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 16 ++-- l10n/th_TH/files.po | 4 +- l10n/th_TH/files_external.po | 4 +- l10n/th_TH/files_sharing.po | 4 +- l10n/th_TH/files_trashbin.po | 4 +- l10n/th_TH/lib.po | 4 +- l10n/th_TH/settings.po | 10 ++- l10n/th_TH/user_ldap.po | 4 +- l10n/tr/core.po | 16 ++-- l10n/tr/files.po | 4 +- l10n/tr/files_external.po | 4 +- l10n/tr/files_sharing.po | 4 +- l10n/tr/files_trashbin.po | 4 +- l10n/tr/lib.po | 4 +- l10n/tr/settings.po | 10 ++- l10n/tr/user_ldap.po | 4 +- l10n/ug/core.po | 16 ++-- l10n/ug/files.po | 4 +- l10n/ug/files_external.po | 4 +- l10n/ug/files_sharing.po | 4 +- l10n/ug/files_trashbin.po | 4 +- l10n/ug/lib.po | 4 +- l10n/ug/settings.po | 10 ++- l10n/ug/user_ldap.po | 4 +- l10n/uk/core.po | 16 ++-- l10n/uk/files.po | 4 +- l10n/uk/files_external.po | 4 +- l10n/uk/files_sharing.po | 4 +- l10n/uk/files_trashbin.po | 4 +- l10n/uk/lib.po | 4 +- l10n/uk/settings.po | 10 ++- l10n/uk/user_ldap.po | 4 +- l10n/ur_PK/core.po | 16 ++-- l10n/ur_PK/files.po | 4 +- l10n/ur_PK/files_trashbin.po | 4 +- l10n/ur_PK/lib.po | 4 +- l10n/ur_PK/settings.po | 10 ++- l10n/ur_PK/user_ldap.po | 4 +- l10n/vi/core.po | 16 ++-- l10n/vi/files.po | 4 +- l10n/vi/files_external.po | 4 +- l10n/vi/files_sharing.po | 4 +- l10n/vi/files_trashbin.po | 4 +- l10n/vi/lib.po | 4 +- l10n/vi/settings.po | 10 ++- l10n/vi/user_ldap.po | 4 +- l10n/zh_CN.GB2312/core.po | 16 ++-- l10n/zh_CN.GB2312/files.po | 4 +- l10n/zh_CN.GB2312/files_external.po | 4 +- l10n/zh_CN.GB2312/files_sharing.po | 4 +- l10n/zh_CN.GB2312/files_trashbin.po | 4 +- l10n/zh_CN.GB2312/lib.po | 4 +- l10n/zh_CN.GB2312/settings.po | 10 ++- l10n/zh_CN.GB2312/user_ldap.po | 4 +- l10n/zh_CN/core.po | 16 ++-- l10n/zh_CN/files.po | 4 +- l10n/zh_CN/files_external.po | 4 +- l10n/zh_CN/files_sharing.po | 4 +- l10n/zh_CN/files_trashbin.po | 4 +- l10n/zh_CN/lib.po | 4 +- l10n/zh_CN/settings.po | 10 ++- l10n/zh_CN/user_ldap.po | 4 +- l10n/zh_HK/core.po | 16 ++-- l10n/zh_HK/files.po | 4 +- l10n/zh_HK/files_external.po | 4 +- l10n/zh_HK/files_sharing.po | 4 +- l10n/zh_HK/files_trashbin.po | 4 +- l10n/zh_HK/lib.po | 4 +- l10n/zh_HK/settings.po | 10 ++- l10n/zh_HK/user_ldap.po | 4 +- l10n/zh_TW/core.po | 16 ++-- l10n/zh_TW/files.po | 4 +- l10n/zh_TW/files_external.po | 4 +- l10n/zh_TW/files_sharing.po | 4 +- l10n/zh_TW/files_trashbin.po | 4 +- l10n/zh_TW/lib.po | 4 +- l10n/zh_TW/settings.po | 10 ++- l10n/zh_TW/user_ldap.po | 4 +- lib/l10n/ko.php | 2 + settings/l10n/hu_HU.php | 1 + settings/l10n/ko.php | 69 ++++++++++++---- settings/l10n/ru.php | 1 + 580 files changed, 2520 insertions(+), 2146 deletions(-) diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index b12bda42f8..02bec91602 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -6,6 +6,8 @@ "Password successfully changed." => "Das Passwort wurde erfolgreich geändert.", "Could not change the password. Maybe the old password was not correct." => "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig.", "Saving..." => "Speichern...", +"Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", +"personal settings" => "Persönliche Einstellungen", "Encryption" => "Verschlüsselung", "Recovery account password" => "Account-Passwort wiederherstellen", "Enabled" => "Aktiviert", @@ -13,6 +15,10 @@ "Old Recovery account password" => "Altes Passwort für die Account-Wiederherstellung", "New Recovery account password" => "Neues Passwort für die Account-Wiederherstellung", "Change Password" => "Passwort ändern", +" If you don't remember your old password you can ask your administrator to recover your files." => "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen.", +"Old log-in password" => "Altes Login-Passwort", +"Current log-in password" => "Momentanes Login-Passwort", +"Enable password recovery:" => "Passwort-Wiederherstellung aktivieren:", "File recovery settings updated" => "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.", "Could not update file recovery" => "Die Dateiwiederherstellung konnte nicht aktualisiert werden." ); diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 3226a17ee9..f6d703d5e6 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -7,11 +7,11 @@ "Could not change the password. Maybe the old password was not correct." => "Impossibile cambiare la password. Forse la vecchia password non era corretta.", "Private key password successfully updated." => "Password della chiave privata aggiornata correttamente.", "Could not update the private key password. Maybe the old password was not correct." => "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta.", -"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "La chiave privata non è valida! Forse la password è stata cambiata dall'esterno. Puoi aggiornare la password della chiave privata nelle impostazioni personali per riottenere l'accesso ai file.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "La chiave privata non è valida! Forse la password è stata cambiata dall'esterno. Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file.", "Saving..." => "Salvataggio in corso...", "Your private key is not valid! Maybe the your password was changed from outside." => "La tua chiave privata non è valida! Forse è stata modifica dall'esterno.", -"You can unlock your private key in your " => "Puoi sbloccare la chiave privata nel tuo", -"personal settings" => "Impostazioni personali", +"You can unlock your private key in your " => "Puoi sbloccare la chiave privata nelle tue", +"personal settings" => "impostazioni personali", "Encryption" => "Cifratura", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Abilita la chiave di ripristino delle password di cifratura (consente di condividere la chiave di ripristino):", "Recovery account password" => "Password di ripristino dell'account", @@ -21,14 +21,14 @@ "Old Recovery account password" => "Vecchia password di ripristino dell'account", "New Recovery account password" => "Nuova password di ripristino dell'account", "Change Password" => "Modifica password", -"Your private key password no longer match your log-in password:" => "La password della chiave privata non corrisponde più alla password di login:", -"Set your old private key password to your current log-in password." => "Imposta la vecchia password della chiave privata sull'attuale password di login", -" If you don't remember your old password you can ask your administrator to recover your files." => "Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file", -"Old log-in password" => "Password di login vecchia", -"Current log-in password" => "Password di login corrente", -"Update Private Key Password" => "Aggiorna la Password della Chiave Privata", +"Your private key password no longer match your log-in password:" => "La password della chiave privata non corrisponde più alla password di accesso:", +"Set your old private key password to your current log-in password." => "Imposta la vecchia password della chiave privata sull'attuale password di accesso.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file.", +"Old log-in password" => "Vecchia password di accesso", +"Current log-in password" => "Password di accesso attuale", +"Update Private Key Password" => "Aggiorna la password della chiave privata", "Enable password recovery:" => "Abilita il recupero della password:", -"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Abilitando questa opzione potrai riaccedere ai file cifrati nel caso in cui la password venga perduta", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Abilitando questa opzione potrai accedere nuovamente ai file cifrati nel caso in cui la password venga perduta", "File recovery settings updated" => "Impostazioni di ripristino dei file aggiornate", "Could not update file recovery" => "Impossibile aggiornare il ripristino dei file" ); diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index d10bfa7e78..1258972bf3 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -1,7 +1,10 @@ "Ключ восстановления успешно установлен", +"Recovery key successfully disabled" => "Ключ восстановления успешно отключен", "Password successfully changed." => "Пароль изменен удачно.", "Could not change the password. Maybe the old password was not correct." => "Невозможно изменить пароль. Возможно старый пароль не был верен.", "Saving..." => "Сохранение...", +"personal settings" => "персональные настройки", "Encryption" => "Шифрование", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Включить шифрование пароля ключа восстановления (понадобится разрешение для восстановления ключа)", "Recovery account password" => "Восстановление пароля учетной записи", @@ -11,6 +14,8 @@ "Old Recovery account password" => "Старое Восстановление пароля учетной записи", "New Recovery account password" => "Новое Восстановление пароля учетной записи", "Change Password" => "Изменить пароль", +" If you don't remember your old password you can ask your administrator to recover your files." => "Если вы не помните свой старый пароль, вы можете попросить своего администратора восстановить ваши файлы", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Включение этой опции позволит вам получить доступ к своим зашифрованным файлам в случае утери пароля", "File recovery settings updated" => "Настройки файла восстановления обновлены", "Could not update file recovery" => "Невозможно обновить файл восстановления" ); diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index 7d17a0adc6..81bd7875d5 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -28,6 +28,7 @@ "Current log-in password" => "Nuvarande inloggningslösenord", "Update Private Key Password" => "Uppdatera den privata lösenordsnyckeln", "Enable password recovery:" => "Aktivera lösenordsåterställning", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord", "File recovery settings updated" => "Inställningarna för filåterställning har uppdaterats", "Could not update file recovery" => "Kunde inte uppdatera filåterställning" ); diff --git a/apps/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 47de9aad5e..803b489c21 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -6,11 +6,14 @@ "Error configuring Google Drive storage" => "Google 드라이브 저장소 설정 오류", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "경고: \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "경고: PHP FTP 지원이 비활성화되어 있거나 설치되지 않았습니다. FTP 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", +"Warning: The Curl support in PHP is not enabled or installed. Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask your system administrator to install it." => "경고: PHP Curl 지원이 비활성화되어 있거나 설치되지 않았습니다. 다른 ownCloud, WebDAV, Google 드라이브 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오.", "External Storage" => "외부 저장소", "Folder name" => "폴더 이름", +"External storage" => "외부 저장소", "Configuration" => "설정", "Options" => "옵션", "Applicable" => "적용 가능", +"Add storage" => "저장소 추가", "None set" => "설정되지 않음", "All Users" => "모든 사용자", "Groups" => "그룹", diff --git a/apps/files_versions/l10n/ko.php b/apps/files_versions/l10n/ko.php index 994144f39e..df34e4681b 100644 --- a/apps/files_versions/l10n/ko.php +++ b/apps/files_versions/l10n/ko.php @@ -1,11 +1,11 @@ "되돌릴 수 없습니다: %s", -"success" => "완료", -"File %s was reverted to version %s" => "파일 %s를 버전 %s로 변경하였습니다.", +"success" => "성공", +"File %s was reverted to version %s" => "파일 %s을(를) 버전 %s(으)로 되돌림", "failure" => "실패", -"File %s could not be reverted to version %s" => "파일 %s를 버전 %s로 되돌리지 못했습니다.", -"No old versions available" => "오래된 버전을 사용할 수 없습니다", -"No path specified" => "경로를 알수 없습니다.", -"Versions" => "버젼", -"Revert a file to a previous version by clicking on its revert button" => "변경 버튼을 클릭하여 이전 버전의 파일로 변경할 수 있습니다." +"File %s could not be reverted to version %s" => "파일 %s을(를) 버전 %s(으)로 되돌리지 못했음", +"No old versions available" => "오래된 버전을 사용할 수 없음", +"No path specified" => "경로가 지정되지 않았음", +"Versions" => "버전", +"Revert a file to a previous version by clicking on its revert button" => "변경 단추를 눌러 이전 버전의 파일로 되돌릴 수 있습니다" ); diff --git a/apps/user_ldap/l10n/ru.php b/apps/user_ldap/l10n/ru.php index 0573be3993..d88b20dc46 100644 --- a/apps/user_ldap/l10n/ru.php +++ b/apps/user_ldap/l10n/ru.php @@ -75,10 +75,13 @@ "User Home Folder Naming Rule" => "Правило именования Домашней Папки Пользователя", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Оставьте имя пользователя пустым (по умолчанию). Иначе укажите атрибут LDAP/AD.", "Internal Username" => "Внутреннее имя пользователя", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder in ownCloud. It is also a port of remote URLs, for instance for all *DAV services. With this setting, the default behaviour can be overriden. To achieve a similar behaviour as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users." => "По-умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Это необходимо для того, чтобы имя пользователя было уникальным и не содержало в себе запрещенных символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по-умолчанию для папки пользователя в ownCloud. Оно также портом для удаленных ссылок, к примеру, для всех сервисов *DAV. С помощию данной настройки можно изменить поведение по-умолчанию. Чтобы достичь поведения, как было настроено до изменения, ownCloud 5 выводит атрибут имени пользователя в этом поле. Оставьте его пустым для режима по-умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP.", "Internal Username Attribute:" => "Аттрибут для внутреннего имени:", "Override UUID detection" => "Переопределить нахождение UUID", +"By default, ownCloud autodetects the UUID attribute. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behaviour. Changes will have effect only on newly mapped (added) LDAP users and groups." => "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP.", "UUID Attribute:" => "Аттрибут для UUID:", "Username-LDAP User Mapping" => "Соответствия Имя-Пользователь LDAP", +"ownCloud uses usernames to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from ownCloud username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found by ownCloud. The internal ownCloud name is used all over in ownCloud. Clearing the Mappings will have leftovers everywhere. Clearing the Mappings is not configuration sensitive, it affects all LDAP configurations! Do never clear the mappings in a production environment. Only clear mappings in a testing or experimental stage." => "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует наличия соответствия имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кэшируется доменное имя (DN) для снижения взаимодействия LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. При очистке соответствий повсюду будут оставаться \"хвосты\". Очистка соответствий не привязана к конкретной конфигурации, она влияет на все конфигурации LDAP! Никогда не очищайте соответствия в рабочем окружении. Очищайте соответствия только во время тестов или в экспериментальных конфигурациях.", "Clear Username-LDAP User Mapping" => "Очистить соответствия Имя-Пользователь LDAP", "Clear Groupname-LDAP Group Mapping" => "Очистить соответствия Группа-Группа LDAP", "Test Configuration" => "Тестовая конфигурация", diff --git a/apps/user_webdavauth/l10n/de_DE.php b/apps/user_webdavauth/l10n/de_DE.php index 4ca749e898..21a886343f 100644 --- a/apps/user_webdavauth/l10n/de_DE.php +++ b/apps/user_webdavauth/l10n/de_DE.php @@ -1,4 +1,5 @@ "WebDAV-Authentifizierung", +"URL: " => "URL:", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud sendet die Benutzerdaten an diese URL. Dieses Plugin prüft die Antwort und wird die Statuscodes 401 und 403 als ungültige Daten und alle anderen Antworten als gültige Daten interpretieren." ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 67cf0aca9d..7cc04571d9 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -90,7 +90,6 @@ "Request failed!
    Did you make sure your email/username was right?" => "La petició ha fallat!
    Esteu segur que el correu/nom d'usuari és correcte?", "You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.", "Username" => "Nom d'usuari", -"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Els vostres fitxers sembla que estan encriptats. Si no tenieu habilitada la clau de recuperació no hi haurà manera de recuperar les dades quan reestabliu la contrasenya. Si no sabeu què fer, contacteu amb l'administrador abans de continuar. Voleu continuar?", "Yes, I really want to reset my password now" => "Sí, vull restablir ara la contrasenya", "Request reset" => "Sol·licita reinicialització", "Your password was reset" => "La vostra contrasenya s'ha reinicialitzat", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index f3b4cd49bf..9eca3af105 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -90,7 +90,6 @@ "Request failed!
    Did you make sure your email/username was right?" => "Požadavek selhal.
    Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", "You will receive a link to reset your password via Email." => "Bude Vám e-mailem zaslán odkaz pro obnovu hesla.", "Username" => "Uživatelské jméno", -"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč obnovy, neexistuje způsob jak získat po obnově hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?", "Yes, I really want to reset my password now" => "Ano, opravdu si nyní přeji obnovit své heslo", "Request reset" => "Vyžádat obnovu", "Your password was reset" => "Vaše heslo bylo obnoveno", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index fb7835eba2..37a8f58e7e 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -89,6 +89,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
    Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", "You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.", "Username" => "Benutzername", +"Yes, I really want to reset my password now" => "Ja, ich möchte jetzt mein Passwort wirklich zurücksetzen.", "Request reset" => "Zurücksetzung anfordern", "Your password was reset" => "Ihr Passwort wurde zurückgesetzt.", "To login page" => "Zur Login-Seite", diff --git a/core/l10n/es.php b/core/l10n/es.php index 93d644c01e..7e89b87190 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -90,7 +90,6 @@ "Request failed!
    Did you make sure your email/username was right?" => "La petición ha fallado!
    ¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?", "You will receive a link to reset your password via Email." => "Recibirá un enlace por correo electrónico para restablecer su contraseña", "Username" => "Nombre de usuario", -"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Sus archivos parecen estar encriptados. Si no ha habilitado la clave de recurperación, no habrá ninguna manera de recuperar sus datos hasta que la contraseña sea reseteada. Si no está seguro de qué hacer, por favor contacte con su administrador antes de continuar. ¿Desea realmente continuar?", "Yes, I really want to reset my password now" => "Sí. Realmente deseo resetear mi contraseña ahora", "Request reset" => "Solicitar restablecimiento", "Your password was reset" => "Su contraseña ha sido establecida", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index bc5d9e8cdd..4e6c56c8bc 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -90,7 +90,6 @@ "Request failed!
    Did you make sure your email/username was right?" => "Requête en échec!
    Avez-vous vérifié vos courriel/nom d'utilisateur?", "You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe.", "Username" => "Nom d'utilisateur", -"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Vos fichiers semblent être cryptés. Si vous n'aviez pas activé la clé de récupération il n'y aura aucun moyen de récupérer vos données une fois que le mot de passe aura été réinitialisé. Si vous n'êtes pas certain de ce que vous faites, veuillez d'abord contacter votre administrateur avant de continuer. Êtes-vous sûr de vouloir continuer?", "Yes, I really want to reset my password now" => "Oui, je veux vraiment réinitialiser mon mot de passe maintenant", "Request reset" => "Demander la réinitialisation", "Your password was reset" => "Votre mot de passe a été réinitialisé", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 583fb73e57..e32af18e34 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -90,7 +90,6 @@ "Request failed!
    Did you make sure your email/username was right?" => "Non foi posíbel facer a petición!
    Asegúrese de que o seu enderezo de correo ou nome de usuario é correcto.", "You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo para restabelecer o contrasinal", "Username" => "Nome de usuario", -"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Semella que os ficheiros están cifrados. Se aínda non activou a chave de recuperación non haberá xeito de recuperar os datos unha vez que se teña restabelecido o contrasinal. Se non ten certeza do que ten que facer, póñase en contacto co administrador antes de continuar. Confirma que quere continuar?", "Yes, I really want to reset my password now" => "Si, confirmo que quero restabelecer agora o meu contrasinal", "Request reset" => "Petición de restabelecemento", "Your password was reset" => "O contrasinal foi restabelecido", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 1e74fa7e06..a0b6979c4b 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -1,4 +1,5 @@ "%s megosztotta Önnel ezt: »%s«", "Category type not provided." => "Nincs megadva a kategória típusa.", "No category to add?" => "Nincs hozzáadandó kategória?", "This category already exists: %s" => "Ez a kategória már létezik: %s", @@ -89,6 +90,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "A kérést nem sikerült teljesíteni!
    Biztos, hogy jó emailcímet/felhasználónevet adott meg?", "You will receive a link to reset your password via Email." => "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról.", "Username" => "Felhasználónév", +"Yes, I really want to reset my password now" => "Igen, tényleg meg akarom változtatni a jelszavam", "Request reset" => "Visszaállítás igénylése", "Your password was reset" => "Jelszó megváltoztatva", "To login page" => "A bejelentkező ablakhoz", @@ -101,6 +103,7 @@ "Help" => "Súgó", "Access forbidden" => "A hozzáférés nem engedélyezett", "Cloud not found" => "A felhő nem található", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!", "web services under your control" => "webszolgáltatások saját kézben", "Edit categories" => "Kategóriák szerkesztése", "Add" => "Hozzáadás", @@ -131,6 +134,7 @@ "remember" => "emlékezzen", "Log in" => "Bejelentkezés", "Alternative Logins" => "Alternatív bejelentkezés", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Üdv!

    Új hír: %s megosztotta Önnel ezt: »%s«.
    Itt nézhető meg!

    Minden jót!", "prev" => "előző", "next" => "következő", "Updating ownCloud to version %s, this may take a while." => "Owncloud frissítés a %s verzióra folyamatban. Kis türelmet." diff --git a/core/l10n/it.php b/core/l10n/it.php index a06283cf41..dc269b5f4b 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -1,5 +1,5 @@ "%s condiviso »%s« con te", +"%s shared »%s« with you" => "%s ha condiviso »%s« con te", "Category type not provided." => "Tipo di categoria non fornito.", "No category to add?" => "Nessuna categoria da aggiungere?", "This category already exists: %s" => "Questa categoria esiste già: %s", @@ -90,8 +90,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "Richiesta non riuscita!
    Sei sicuro che l'indirizzo di posta/nome utente fosse corretto?", "You will receive a link to reset your password via Email." => "Riceverai un collegamento per ripristinare la tua password via email", "Username" => "Nome utente", -"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "I file non sembrano essere cifrati. Se non hai precedentemente abilitato la chiave di recupero, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà resettata. Se non sei sicuro, per favore contatta l'amministratore prima di proseguire. Vuoi veramente continuare?", -"Yes, I really want to reset my password now" => "Sì, voglio davvero resettare la mia password adesso", +"Yes, I really want to reset my password now" => "Sì, voglio davvero ripristinare la mia password adesso", "Request reset" => "Richiesta di ripristino", "Your password was reset" => "La password è stata ripristinata", "To login page" => "Alla pagina di accesso", @@ -104,7 +103,7 @@ "Help" => "Aiuto", "Access forbidden" => "Accesso negato", "Cloud not found" => "Nuvola non trovata", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nGrazie!", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ehilà,\n\nvolevo solamente farti sapere che %s ha condiviso %s con te.\nGuarda: %s\n\nSaluti!", "web services under your control" => "servizi web nelle tue mani", "Edit categories" => "Modifica categorie", "Add" => "Aggiungi", @@ -135,7 +134,7 @@ "remember" => "ricorda", "Log in" => "Accedi", "Alternative Logins" => "Accessi alternativi", -"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Ehilà,

    volevo solamente farti sapere che %s ha condiviso »%s« con te.
    Guarda!

    Grazie!", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Ehilà,

    volevo solamente farti sapere che %s ha condiviso »%s« con te.
    Guarda!

    Saluti!", "prev" => "precedente", "next" => "successivo", "Updating ownCloud to version %s, this may take a while." => "Aggiornamento di ownCloud alla versione %s in corso, ciò potrebbe richiedere del tempo." diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 5119330264..29dca3b105 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -90,7 +90,6 @@ "Request failed!
    Did you make sure your email/username was right?" => "リクエストに失敗しました!
    あなたのメール/ユーザ名が正しいことを確認しましたか?", "You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。", "Username" => "ユーザー名", -"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "ファイルが暗号化されているようです。復旧キーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?", "Yes, I really want to reset my password now" => "はい、今すぐパスワードをリセットします。", "Request reset" => "リセットを要求します。", "Your password was reset" => "あなたのパスワードはリセットされました。", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 293ac9ec11..17e6150f90 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -1,4 +1,5 @@ "%s поделился »%s« с вами", "Category type not provided." => "Тип категории не предоставлен", "No category to add?" => "Нет категорий для добавления?", "This category already exists: %s" => "Эта категория уже существует: %s", @@ -89,6 +90,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "Что-то не так. Вы уверены что Email / Имя пользователя указаны верно?", "You will receive a link to reset your password via Email." => "На ваш адрес Email выслана ссылка для сброса пароля.", "Username" => "Имя пользователя", +"Yes, I really want to reset my password now" => "Да, я действительно хочу сбросить свой пароль", "Request reset" => "Запросить сброс", "Your password was reset" => "Ваш пароль был сброшен", "To login page" => "На страницу авторизации", @@ -101,6 +103,7 @@ "Help" => "Помощь", "Access forbidden" => "Доступ запрещён", "Cloud not found" => "Облако не найдено", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Приветствую,⏎\n⏎\nпросто даю знать, что %s поделился %s с вами.⏎\nПосмотреть: %s⏎\n⏎\nУдачи!", "web services under your control" => "веб-сервисы под вашим управлением", "Edit categories" => "Редактировать категрии", "Add" => "Добавить", @@ -131,6 +134,7 @@ "remember" => "запомнить", "Log in" => "Войти", "Alternative Logins" => "Альтернативные имена пользователя", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Приветствую,

    просто даю знать, что %s поделился »%s« с вами.
    Посмотреть!

    Удачи!", "prev" => "пред", "next" => "след", "Updating ownCloud to version %s, this may take a while." => "Производится обновление ownCloud до версии %s. Это может занять некоторое время." diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 68abe9bd15..492af2cff3 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -90,7 +90,6 @@ "Request failed!
    Did you make sure your email/username was right?" => "Begäran misslyckades!
    Är du helt säker på att din e-postadress/användarnamn är korrekt?", "You will receive a link to reset your password via Email." => "Du får en länk att återställa ditt lösenord via e-post.", "Username" => "Användarnamn", -"Your files seems to be encrypted. If you didn't have enabled the recovery key there will be no way to get your data back once the password was resetted. If you are not sure what to do, please contact your administrator first before continue. Do you really want to continue?" => "Dina filer ser ut att vara krypterade. Om du inte har aktiverat återställningsnyckeln så finns finns det inget sätt att få tillbaka dina filer när du väl har återställt lösenordet. Om du inte är säker på vad du ska göra, vänligen kontakta din administratör innan du fortsätter. Vill du verkligen fortsätta?", "Yes, I really want to reset my password now" => "Ja, jag vill verkligen återställa mitt lösenord nu", "Request reset" => "Begär återställning", "Your password was reset" => "Ditt lösenord har återställts", diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 069c31c85f..fad0a898e7 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 00:13+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "Gebruikersnaam" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Herstel-versoek" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 178fe43a42..1863bcc365 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index abaa446790..89868f17d5 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Wagwoord" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "Nuwe wagwoord" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index e021aa60ea..70a11de5e5 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "حصل خطأ في عملية التحديث, يرجى ارسال تقر msgid "The update was successful. Redirecting you to ownCloud now." msgstr "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "إعادة تعيين كلمة سر ownCloud" @@ -403,17 +403,17 @@ msgstr "إسم المستخدم" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "طلب تعديل" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index dc74834b58..9c51d6c3b0 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index 23eb8d9052..115c42f303 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index e92cb7a050..8d7293fb09 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 551376289f..f105c0d75f 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index a95e1c80c9..d85361731e 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 3db2459c3b..fa49d0e96c 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "إستخدم هذا العنوان للإتصال بـ ownCloud في مدير الملفات" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "اسم الدخول" @@ -485,6 +485,10 @@ msgstr "غير محدود" msgid "Other" msgstr "شيء آخر" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "وحدة التخزين" diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index bbad2c700d..48d17025fe 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/be/core.po b/l10n/be/core.po index 5917b8f8bb..0ea77a53fe 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 3efffd109d..09f57fe7f7 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 86f0c81281..676391c875 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "Потребител" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Нулиране на заявка" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 8c7e8f0cb8..d43936cf8a 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index a55010261d..6e51290354 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 7fb9eb179e..453d8d899e 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 564ffb2af8..309ef91c58 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index d41cc2dd33..a76f2e233e 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index fba23f57e5..ea642ac045 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Потребител" @@ -485,6 +485,10 @@ msgstr "Неограничено" msgid "Other" msgstr "Други" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Хранилище" diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 8b83807dd9..6dcc3f2561 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 3a24f3e32a..d9b6e50260 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ" @@ -403,17 +403,17 @@ msgstr "ব্যবহারকারী" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "অনুরোধ পূনঃনির্ধারণ" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 056729d79a..e1bb1a1eac 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 5069d66488..ffd9f2cd79 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 1028080401..c26aae48f8 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index 483ad5b478..ef56ce5174 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 3e031fd47e..687a1c5c8e 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 9715d4533e..609167e7b2 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "আপনার ownCloud এ সংযুক্ত হতে এই ঠিকানাটি আপনার ফাইল ব্যবস্থাপকে ব্যবহার করুন" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "অসীম" msgid "Other" msgstr "অন্যান্য" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "সংরক্ষণাগার" diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 9201452f86..fdd5638500 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index daddfc19ba..66dbd4471b 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 8c622729e9..01cccc581b 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 0205271e4b..eb11548ec0 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index 28ed4328d5..6aed06182f 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 19:40+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 4d429b4e28..e52f73aadb 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -375,7 +375,7 @@ msgstr "L'actualització ha estat incorrecte. Comuniqueu aquest error a \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 5a3c4b2dde..0feabd1e2f 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index b81250cbaf..2cef38f2d2 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 4af8d555b5..8eb8d78755 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Useu aquesta adreça per connectar amb ownCloud des del gestor de fitxers" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nom d'accés" @@ -487,6 +487,10 @@ msgstr "Il·limitat" msgid "Other" msgstr "Un altre" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Emmagatzemament" diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index b4422bd33e..a7808a3c8a 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 1e270a79f8..45df3e8f05 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -375,7 +375,7 @@ msgstr "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index a0b9aced70..68ffe77930 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index 89dd719f67..02f93e2850 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 873c766053..767bc3926c 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 583935f99e..ca72ae2dcd 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 2a78f1db4c..eca1544d11 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použijte tuto adresu pro připojení k vašemu ownCloud skrze správce souborů" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Přihlašovací jméno" @@ -486,6 +486,10 @@ msgstr "Neomezeně" msgid "Other" msgstr "Jiný" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Úložiště" diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 0b86bf8396..b13a473734 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 3a033e05b7..6ced824723 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "Methodd y diweddariad. Adroddwch y mater hwn i \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po index c7ecd8deba..697fe7e8b8 100644 --- a/l10n/cy_GB/files_external.po +++ b/l10n/cy_GB/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index dd347cd9d3..7448461b09 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 0a7b69320c..7faf53a250 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 12b88fc494..13e3c3ad1b 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 3ade6ab5d4..f11015762c 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Arall" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po index c6d1505941..46fa9db646 100644 --- a/l10n/cy_GB/user_ldap.po +++ b/l10n/cy_GB/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/core.po b/l10n/da/core.po index 9c63d373b8..8fa71f3600 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -375,7 +375,7 @@ msgstr "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Nulstil ownCloud kodeord" @@ -405,17 +405,17 @@ msgstr "Brugernavn" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Anmod om nulstilling" diff --git a/l10n/da/files.po b/l10n/da/files.po index edb5aea450..5ed61cf1d4 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index a982e18594..06f7ea0740 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 0846e0a412..cd5b2b633c 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index a434899596..31f2c767a2 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index e916bf5b64..dd35a87895 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 5241239d7d..3017f656be 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Ole Holm Frandsen \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Brug denne adresse til at oprette forbindelse til din ownCloud i din filstyring" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Loginnavn" @@ -486,6 +486,10 @@ msgstr "Ubegrænset" msgid "Other" msgstr "Andet" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Opbevaring" diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index babaaf4012..d5ac17cb12 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/de/core.po b/l10n/de/core.po index 8f54a7da0e..4519c6fcb0 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -377,7 +377,7 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index 004c0ac422..ca29a3671b 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 8dd3e73a10..f57e8accbf 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index 46e2b1d379..3ab4dad082 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index d6ae107084..ac036172eb 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 550aba4e98..0f8ffcd35f 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -458,7 +458,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwende diese Adresse, um Deinen Dateimanager mit Deiner ownCloud zu verbinden" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Loginname" @@ -488,6 +488,10 @@ msgstr "Unbegrenzt" msgid "Other" msgstr "Andere" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Speicher" diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 05aa5d3b9a..a5f5bd11c1 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index f85c22988a..895758c9d5 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -377,7 +377,7 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index b7d0b1cd73..7e3eb2e5bf 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 20:40+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,7 +70,7 @@ msgstr "Speichern..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " @@ -78,7 +78,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "Persönliche Einstellungen" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -129,15 +129,15 @@ msgstr "" msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Altes Login-Passwort" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Momentanes Login-Passwort" #: templates/settings-personal.php:35 msgid "Update Private Key Password" @@ -145,7 +145,7 @@ msgstr "" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Passwort-Wiederherstellung aktivieren:" #: templates/settings-personal.php:47 msgid "" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 3810673105..103dcb089c 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 687d3547a3..2792a8f020 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index 76f3b936cf..adbf6bbb3f 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index ede9c6eeb9..6875e4e1ea 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index d124f2de4a..3fe72fecaa 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -459,7 +459,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Verwenden Sie diese Adresse, um Ihren Dateimanager mit Ihrer ownCloud zu verbinden" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Loginname" @@ -489,6 +489,10 @@ msgstr "Unbegrenzt" msgid "Other" msgstr "Andere" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Speicher" diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 03eb50a297..9edcec2140 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index 31277b4628..41721aaee3 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 20:40+0000\n" +"Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "WebDAV-Authentifizierung" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL:" #: templates/settings.php:7 msgid "" diff --git a/l10n/el/core.po b/l10n/el/core.po index 93d770895b..5434c3bbe1 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -376,7 +376,7 @@ msgstr "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ σ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Επαναφορά συνθηματικού ownCloud" @@ -406,17 +406,17 @@ msgstr "Όνομα χρήστη" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Επαναφορά αίτησης" diff --git a/l10n/el/files.po b/l10n/el/files.po index 098b50fdec..042c8dd97c 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index d8b08a4e85..c76e96d718 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: KAT.RAT12 \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index 53eb8fdd79..18ac51eb10 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index c07a6301ad..2f4f10f7ee 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 72626a9818..d8ecdf0d14 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 7c1867ff98..01fb826efa 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Χρήση αυτής της διεύθυνσης για σύνδεση στο ownCloud με τον διαχειριστή αρχείων σας" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Όνομα Σύνδεσης" @@ -487,6 +487,10 @@ msgstr "Απεριόριστο" msgid "Other" msgstr "Άλλο" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Αποθήκευση" diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index 76c0847c83..83a70c065a 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 9ac9450968..ed09edebe1 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -404,17 +404,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index 49c7ec2e90..3a2ef18fa6 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index b0c051fb97..6c131a27cd 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index 4459d6d106..18d9a30975 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passcode" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 20b2e57a67..65eea1f8c8 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index cc29f3d3b5..8177b19960 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index 20d53a72b6..7672ad3722 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index c22d21b978..af8ffc3340 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 987a44c32d..7ea6a719c7 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 77e173f123..76e39dee16 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Uzu ĉi tiun adreson por konekti al via ownCloud vian dosieradministrilon" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "Senlima" msgid "Other" msgstr "Alia" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Konservejo" diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 09656fd32d..b81bab3340 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/core.po b/l10n/es/core.po index f186578a4d..1c6bb3b894 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" -"Last-Translator: saskarip \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -378,7 +378,7 @@ msgstr "La actualización ha fracasado. Por favor, informe de este problema a la msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Reseteo contraseña de ownCloud" @@ -408,17 +408,17 @@ msgstr "Nombre de usuario" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" -msgstr "Sus archivos parecen estar encriptados. Si no ha habilitado la clave de recurperación, no habrá ninguna manera de recuperar sus datos hasta que la contraseña sea reseteada. Si no está seguro de qué hacer, por favor contacte con su administrador antes de continuar. ¿Desea realmente continuar?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" +msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "Sí. Realmente deseo resetear mi contraseña ahora" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Solicitar restablecimiento" diff --git a/l10n/es/files.po b/l10n/es/files.po index d7f76b2f37..34f3c846f3 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Art O. Pal \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index a48a279455..bc7a007467 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 543766d058..3e3ef1fe0e 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index edc0a8b181..2c69eab707 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 903afab050..d410d1d59b 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 8073cd9ddb..a0c5e94e56 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: saskarip \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -459,7 +459,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use esta dirección para conectarse a su cuenta de ownCloud en el administrador de archivos" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nombre de usuario" @@ -489,6 +489,10 @@ msgstr "Ilimitado" msgid "Other" msgstr "Otro" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Almacenamiento" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index e1453cff61..e05a73ad61 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index c0087825b6..f2a262c8a7 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "La actualización no pudo ser completada. Por favor, reportá el inconve msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización fue exitosa. Estás siendo redirigido a ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Restablecer contraseña de ownCloud" @@ -404,17 +404,17 @@ msgstr "Nombre de usuario" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Solicitar restablecimiento" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 93228146fe..398798369a 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Agustin Ferrario \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 767e411f30..fbd62a0bc3 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index de6cc77290..b0c9e93bbc 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 722d103c88..9cb68c7c72 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 010047b63c..818a2250d7 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index b6105d59b2..c3c016357e 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliza esta dirección para conectarte con ownCloud en tu Administrador de Archivos" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nombre de " @@ -487,6 +487,10 @@ msgstr "Ilimitado" msgid "Other" msgstr "Otros" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Almacenamiento" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 46c7448ba8..81cff32764 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 480a41ef97..be86c55a86 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -375,7 +375,7 @@ msgstr "Uuendus ebaõnnestus. Palun teavita probleemidest \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 343f26034a..850bcc9e20 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index b5e9b6c805..5d37f120ff 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 59da079400..8c91514c8b 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Rivo Zängov \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index c598728781..a6bde9d70c 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 14890eebb1..8b5f8186e5 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Kasuta seda aadressi ühendamaks oma ownCloudi failihalduriga" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Kasutajanimi" @@ -487,6 +487,10 @@ msgstr "Piiramatult" msgid "Other" msgstr "Muu" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Maht" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 5928cce325..55f9bdbe32 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index c198338e0d..1cddc86a73 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index d33c6a213c..498d63c004 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 116d9b7cee..003b7c7e54 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 81e9151a1d..40f0272c7e 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index ce9d505fed..b4efaef29f 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 24fd20572a..780a36e174 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Erabili helbide hau zure fitxategi kudeatzailean zure ownCloudera konektatzeko" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Sarrera Izena" @@ -485,6 +485,10 @@ msgstr "Mugarik gabe" msgid "Other" msgstr "Bestelakoa" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Biltegiratzea" diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index bfbaa1d20f..0ce491ae84 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 6a954879c6..1321c169eb 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "به روز رسانی ناموفق بود. لطفا این خطا را msgid "The update was successful. Redirecting you to ownCloud now." msgstr "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "پسورد ابرهای شما تغییرکرد" @@ -403,17 +403,17 @@ msgstr "نام کاربری" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "درخواست دوباره سازی" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index fa4826f023..afd3c12965 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 75c2a531e4..5fced55beb 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 40c0a2ed45..c011c667e8 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 829c7827f1..95ada94343 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 110ddafa9b..b985a09770 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index aad62ec112..e3200bcd20 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "از این نشانی برای اتصال به ownCloud خودتان در بخش مدیریت فایل خودتان استفاده کنید" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "نام کاربری" @@ -485,6 +485,10 @@ msgstr "نامحدود" msgid "Other" msgstr "دیگر" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "حافظه" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 7cbaf72ab3..15d5ccfc78 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index a44a0d7d9a..54728a2cc1 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "Päivitys epäonnistui. Ilmoita ongelmasta \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 2d0b315d74..d85978f5eb 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 9cfa3be62f..cf61264e3e 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 69876dbba1..4b849f371a 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index e6bc49283d..a493df3019 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index ed7e1086a1..57856c22bb 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Kirjautumisnimi" @@ -486,6 +486,10 @@ msgstr "Rajoittamaton" msgid "Other" msgstr "Muu" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Tallennustila" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index abc66cc8d1..9121ebe714 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 03c41ebf0d..c545267b0b 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Adalberto Rodrigues \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -377,7 +377,7 @@ msgstr "La mise à jour a échoué. Veuillez signaler ce problème à la \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index 467ab40595..9a6e447854 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index a9bef3a1bd..cf2ccd9965 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index a36a4077fc..9c3e0fa99a 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 52b61adfd7..9c4a7473c1 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Cyril Glapa \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 4201701c0d..b45883ea2f 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: lyly95\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -458,7 +458,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utiliser cette adresse pour vous connecter à ownCloud dans votre gestionnaire de fichiers" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nom de la connexion" @@ -488,6 +488,10 @@ msgstr "Illimité" msgid "Other" msgstr "Autre" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Support de stockage" diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index 2ef34d5f91..60a95207c2 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: plachance \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 2af63a3958..ca3a672db5 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -374,7 +374,7 @@ msgstr "A actualización non foi satisfactoria, informe deste problema á \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 2451a64db0..9d74f39066 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index 6fad2a968c..6d04e4d226 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index d288eae7d5..d15ad4dca8 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 61ac8da4b7..00c0c83705 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 36ec782a5b..6029cf4975 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Utilice este enderezo para conectarse ao seu ownCloud co administrador de ficheiros" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nome de acceso" @@ -486,6 +486,10 @@ msgstr "Sen límites" msgid "Other" msgstr "Outro" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Almacenamento" diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index e9929b8340..472eec54d3 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/core.po b/l10n/he/core.po index dfb705f2bb..6be3427fab 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "תהליך העדכון לא הושלם בהצלחה. נא דווח את msgid "The update was successful. Redirecting you to ownCloud now." msgstr "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "איפוס הססמה של ownCloud" @@ -404,17 +404,17 @@ msgstr "שם משתמש" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "בקשת איפוס" diff --git a/l10n/he/files.po b/l10n/he/files.po index 5801a03ef9..424774d4be 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 908ac8030c..d696d30b3b 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 5f45ef2f64..6bcea3d297 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 209286dd06..c71f6a2a15 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 75e43d538b..e3a200c454 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 863e74563c..fe4e6de99f 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "השתמש בכתובת זאת על מנת להתחבר אל ownCloud דרך סייר קבצים." -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "שם כניסה" @@ -486,6 +486,10 @@ msgstr "ללא הגבלה" msgid "Other" msgstr "אחר" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "אחסון" diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index cf442b5c66..7ef34a47b7 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 9b0333f6b0..bd05e94cfe 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -404,17 +404,17 @@ msgstr "प्रयोक्ता का नाम" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 9dbacd50ee..ba3e62ad63 100644 --- a/l10n/hi/files.po +++ b/l10n/hi/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index d8be46cbbd..ab3955b78d 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 3f1dc098e5..ac7c551721 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "पासवर्ड" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "नया पासवर्ड" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 509792cd16..389d4547dd 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud resetiranje lozinke" @@ -403,17 +403,17 @@ msgstr "Korisničko ime" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Zahtjev za resetiranjem" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index f23424a79e..88f1d71b0e 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index 1e7fbffd96..d6ce36cf68 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index cf27ad7f88..26865c09c3 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 96d7c9ec13..af8a5289bf 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 37b036dd23..03d5c52b0f 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 5c1d4bfa8a..96f86bb51b 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "ostali" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index 9bb2b776fd..cabef77275 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 134e54c832..cfde1b630e 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s megosztotta Önnel ezt: »%s«" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -374,7 +374,7 @@ msgstr "A frissítés nem sikerült. Kérem értesítse erről a problémáról msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud jelszó-visszaállítás" @@ -404,17 +404,17 @@ msgstr "Felhasználónév" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Igen, tényleg meg akarom változtatni a jelszavam" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Visszaállítás igénylése" @@ -471,7 +471,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Üdv!\n\nÚj hír: %s megosztotta Önnel ezt: %s.\nItt nézhető meg: %s\n\nMinden jót!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +613,7 @@ msgstr "Alternatív bejelentkezés" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Üdv!

    Új hír: %s megosztotta Önnel ezt: »%s«.
    Itt nézhető meg!

    Minden jót!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 969f194a71..1c0d0c11fd 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 3976c2ef02..cb1e632bd8 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 4525d9e1ce..7e6728345f 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 4a0a793468..1d61ad3517 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 979f5bc546..b0bcbe6eff 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 91f9dc984f..0cdbabaa11 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ennek a címnek a megadásával a WebDAV-protokollon keresztül saját gépének fájlkezelőjével is is elérheti az állományait." -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Bejelentkezési név" @@ -473,7 +473,7 @@ msgstr "A jelszóvisszaállítás adminisztrációja" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Adja meg az adatok visszanyeréséhez szükséges jelszót arra az esetre, ha a felhasználók megváltoztatják a jelszavukat" #: templates/users.php:42 msgid "Default Storage" @@ -487,6 +487,10 @@ msgstr "Korlátlan" msgid "Other" msgstr "Más" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Tárhely" diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index eaccee466a..fc5a0a65c1 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 23d6a9c882..6a1b8e1ec6 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 3a978e2356..1e8ca0029a 100644 --- a/l10n/hy/files.po +++ b/l10n/hy/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 78d44ff3b3..0794e6f7e7 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index e9d3f31999..d1f7a33032 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index 1854e7c714..13f0d765f3 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" "PO-Revision-Date: 2013-04-26 08:01+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index 87532f2ad1..77fa11c625 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Այլ" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 671bcd8fba..6945814fd2 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Reinitialisation del contrasigno de ownCLoud" @@ -403,17 +403,17 @@ msgstr "Nomine de usator" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Requestar reinitialisation" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 6fb0537503..00223d2dea 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 3715851a8a..402caf0701 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index e914dab39d..65c4b2dc7e 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index dc59c2eac5..a8c5eddbf3 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 3603c6ef5f..0c3797b6b8 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 69dcfb719f..ba6524b044 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Altere" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index de7e5dac20..e3e704b97c 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/core.po b/l10n/id/core.po index 96e493d400..eefda9b64a 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "Pembaruan gagal. Silakan laporkan masalah ini ke \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index e15378f1f7..4b75571ef3 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 18755376f0..19fee4524d 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index ac351b9689..831e58229a 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index d46847352c..beb71c3676 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 12075cc982..6796b003a0 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gunakan alamat ini untuk terhubung ke ownCloud Anda pada manajer berkas " -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nama Masuk" @@ -485,6 +485,10 @@ msgstr "Tak terbatas" msgid "Other" msgstr "Lainnya" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Penyimpanan" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index 5054a4b235..69f3fe1174 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/core.po b/l10n/is/core.po index 1caa5337ea..8617c036e4 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Uppfærslan heppnaðist. Beini þér til ownCloud nú." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "endursetja ownCloud lykilorð" @@ -404,17 +404,17 @@ msgstr "Notendanafn" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Endursetja lykilorð" diff --git a/l10n/is/files.po b/l10n/is/files.po index f54f9018f1..837e5b483f 100644 --- a/l10n/is/files.po +++ b/l10n/is/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index bf0624b6b1..a45396a606 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index 5f8abfc5dd..9082c3a37b 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index d55d5620be..e6c1059e59 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 09a44d7c1c..c66520b9be 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 7afbac45e1..e799032597 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Notaðu þessa vefslóð til að tengjast ownCloud svæðinu þínu" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -486,6 +486,10 @@ msgstr "Ótakmarkað" msgid "Other" msgstr "Annað" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "gagnapláss" diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index f638b42598..1b3e30c43a 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Magnus Magnusson \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/core.po b/l10n/it/core.po index 222bfef55c..eed00611a5 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: idetao \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "%s condiviso »%s« con te" +msgstr "%s ha condiviso »%s« con te" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -375,7 +375,7 @@ msgstr "L'aggiornamento non è riuscito. Segnala il problema alla
    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "Ehilà,

    volevo solamente farti sapere che %s ha condiviso »%s« con te.
    Guarda!

    Grazie!" +msgstr "Ehilà,

    volevo solamente farti sapere che %s ha condiviso »%s« con te.
    Guarda!

    Saluti!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/it/files.po b/l10n/it/files.po index 77d0875300..2777104d44 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-19 07:00+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index e92fab7b94..de89b27ae0 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 11:00+0000\n" -"Last-Translator: idetao \n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-19 06:40+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -60,7 +60,7 @@ msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "La chiave privata non è valida! Forse la password è stata cambiata dall'esterno. Puoi aggiornare la password della chiave privata nelle impostazioni personali per riottenere l'accesso ai file." +msgstr "La chiave privata non è valida! Forse la password è stata cambiata dall'esterno. Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file." #: js/settings-admin.js:11 msgid "Saving..." @@ -74,11 +74,11 @@ msgstr "La tua chiave privata non è valida! Forse è stata modifica dall'estern #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "Puoi sbloccare la chiave privata nel tuo" +msgstr "Puoi sbloccare la chiave privata nelle tue" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "Impostazioni personali" +msgstr "impostazioni personali" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -119,29 +119,29 @@ msgstr "Modifica password" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "La password della chiave privata non corrisponde più alla password di login:" +msgstr "La password della chiave privata non corrisponde più alla password di accesso:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "Imposta la vecchia password della chiave privata sull'attuale password di login" +msgstr "Imposta la vecchia password della chiave privata sull'attuale password di accesso." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file" +msgstr "Se non ricordi la vecchia password puoi chiedere al tuo amministratore di recuperare i file." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "Password di login vecchia" +msgstr "Vecchia password di accesso" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "Password di login corrente" +msgstr "Password di accesso attuale" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "Aggiorna la Password della Chiave Privata" +msgstr "Aggiorna la password della chiave privata" #: templates/settings-personal.php:45 msgid "Enable password recovery:" @@ -151,7 +151,7 @@ msgstr "Abilita il recupero della password:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "Abilitando questa opzione potrai riaccedere ai file cifrati nel caso in cui la password venga perduta" +msgstr "Abilitando questa opzione potrai accedere nuovamente ai file cifrati nel caso in cui la password venga perduta" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index 6cc7908796..6ad7197145 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index e6af34cb90..ecc4e52541 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 5d8c6959c8..ed98e1ded0 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 49772e6f03..9fff38cff1 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 98103924e6..cc905ef45c 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usa questo indirizzo per connetterti al tuo ownCloud dal tuo gestore file" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nome utente" @@ -486,6 +486,10 @@ msgstr "Illimitata" msgid "Other" msgstr "Altro" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Archiviazione" diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 5fb988857d..da34f70c41 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po index 1454f5effb..78c08a7015 100644 --- a/l10n/it/user_webdavauth.po +++ b/l10n/it/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 08:20+0000\n" -"Last-Translator: idetao \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-19 06:39+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 1db70c8297..efa06e028a 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -375,7 +375,7 @@ msgstr "更新に成功しました。この問題を \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index fdf38606f7..9a111aade3 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 5b7703a45a..4cb3e0e339 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 12c48924dc..bea0655a5f 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 3e27f61627..57d9492a15 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 23f1aa6bdb..737cf4a3a0 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -458,7 +458,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ファイルマネージャでownCloudに接続する際はこのアドレスを利用してください" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "ログイン名" @@ -488,6 +488,10 @@ msgstr "無制限" msgid "Other" msgstr "その他" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "ストレージ" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 29950031f0..0fd86ff70f 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index af6bce82f1..ab5767586c 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index 5db66f8438..5f32547d65 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index e15acc3941..5168c2b904 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index 6c4f017b65..af228db33b 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "პაროლი" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ad738c38c8..be74a78c29 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "განახლება ვერ განხორციელდ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud პაროლის შეცვლა" @@ -403,17 +403,17 @@ msgstr "მომხმარებლის სახელი" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "პაროლის შეცვლის მოთხოვნა" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 2e224f56e7..40f450b134 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index c24d78d748..3c88ce9f5e 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 1713bad20b..23b4725d73 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index b10ed58501..1f65db6eb0 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: drlinux64 \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 9a88f9fb0b..e50ad5cd58 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 6199dd974a..5c4122bdcd 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "მომხმარებლის სახელი" @@ -486,6 +486,10 @@ msgstr "ულიმიტო" msgid "Other" msgstr "სხვა" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "საცავი" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index dd7d423f37..2f4fc74518 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index feab760f67..bd955c14a2 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 435aa50322..27c2897d6e 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 6ab3b89014..63a02389ae 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "업데이트가 실패하였습니다. 이 문제를 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index dddb0cd093..2e5494e078 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Shinjo Park , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-19 08:50+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -55,7 +56,7 @@ msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " "your system administrator to install it." -msgstr "" +msgstr "경고: PHP Curl 지원이 비활성화되어 있거나 설치되지 않았습니다. 다른 ownCloud, WebDAV, Google 드라이브 공유를 마운트할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." #: templates/settings.php:3 msgid "External Storage" @@ -67,7 +68,7 @@ msgstr "폴더 이름" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "외부 저장소" #: templates/settings.php:11 msgid "Configuration" @@ -83,7 +84,7 @@ msgstr "적용 가능" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "저장소 추가" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index b7f2b6879a..97af57e60e 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-19 08:44+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 345feb4851..d38a2d5a5f 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index ce0e200f0b..f92a630269 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Shinjo Park , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-19 08:50+0000\n" +"Last-Translator: Shinjo Park \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,12 +25,12 @@ msgstr "되돌릴 수 없습니다: %s" #: history.php:40 msgid "success" -msgstr "완료" +msgstr "성공" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "파일 %s를 버전 %s로 변경하였습니다." +msgstr "파일 %s을(를) 버전 %s(으)로 되돌림" #: history.php:49 msgid "failure" @@ -38,20 +39,20 @@ msgstr "실패" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "파일 %s를 버전 %s로 되돌리지 못했습니다." +msgstr "파일 %s을(를) 버전 %s(으)로 되돌리지 못했음" #: history.php:69 msgid "No old versions available" -msgstr "오래된 버전을 사용할 수 없습니다" +msgstr "오래된 버전을 사용할 수 없음" #: history.php:74 msgid "No path specified" -msgstr "경로를 알수 없습니다." +msgstr "경로가 지정되지 않았음" #: js/versions.js:6 msgid "Versions" -msgstr "버젼" +msgstr "버전" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "변경 버튼을 클릭하여 이전 버전의 파일로 변경할 수 있습니다." +msgstr "변경 단추를 눌러 이전 버전의 파일로 되돌릴 수 있습니다" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index d0e2ac9b50..aea79c0c2d 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-19 08:50+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -180,12 +180,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." #: setup.php:871 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "설치 가이드를 다시 한 번 확인하십시오." #: template.php:113 msgid "seconds ago" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index aa9163d453..c595446f19 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Shinjo Park , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -28,19 +29,19 @@ msgstr "인증 오류" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." -msgstr "" +msgstr "표시 이름이 변경되었습니다." #: ajax/changedisplayname.php:34 msgid "Unable to change display name" -msgstr "" +msgstr "표시 이름을 변경할 수 없음" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "그룹이 이미 존재합니다." +msgstr "그룹이 이미 존재함" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "그룹을 추가할 수 없습니다." +msgstr "그룹을 추가할 수 없음" #: ajax/enableapp.php:11 msgid "Could not enable app. " @@ -56,15 +57,15 @@ msgstr "잘못된 이메일 주소" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "그룹을 삭제할 수 없습니다." +msgstr "그룹을 삭제할 수 없음" #: ajax/removeuser.php:25 msgid "Unable to delete user" -msgstr "사용자를 삭제할 수 없습니다." +msgstr "사용자를 삭제할 수 없음." #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "언어가 변경되었습니다" +msgstr "언어가 변경됨" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" @@ -72,25 +73,25 @@ msgstr "잘못된 요청" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "관리자 자신을 관리자 그룹에서 삭제할 수 없습니다" +msgstr "관리자 자신을 관리자 그룹에서 삭제할 수 없음" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "그룹 %s에 사용자를 추가할 수 없습니다." +msgstr "그룹 %s에 사용자를 추가할 수 없음" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "그룹 %s에서 사용자를 삭제할 수 없습니다." +msgstr "그룹 %s에서 사용자를 삭제할 수 없음" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "앱을 업데이트할 수 없습니다." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "버전 {appversion}(으)로 업데이트" #: js/apps.js:36 js/apps.js:76 msgid "Disable" @@ -102,7 +103,7 @@ msgstr "사용함" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "기다려 주십시오...." #: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" @@ -110,15 +111,15 @@ msgstr "오류" #: js/apps.js:90 msgid "Updating...." -msgstr "" +msgstr "업데이트 중...." #: js/apps.js:93 msgid "Error while updating app" -msgstr "" +msgstr "앱을 업데이트하는 중 오류 발생" #: js/apps.js:96 msgid "Updated" -msgstr "" +msgstr "업데이트됨" #: js/personal.js:118 msgid "Saving..." @@ -126,15 +127,15 @@ msgstr "저장 중..." #: js/users.js:47 msgid "deleted" -msgstr "삭제" +msgstr "삭제됨" #: js/users.js:47 msgid "undo" -msgstr "되돌리기" +msgstr "실행 취소" #: js/users.js:79 msgid "Unable to remove user" -msgstr "" +msgstr "사용자를 삭제할 수 없음" #: js/users.js:92 templates/users.php:26 templates/users.php:87 #: templates/users.php:112 @@ -151,19 +152,19 @@ msgstr "삭제" #: js/users.js:269 msgid "add group" -msgstr "" +msgstr "그룹 추가" #: js/users.js:428 msgid "A valid username must be provided" -msgstr "" +msgstr "올바른 사용자 이름을 입력해야 함" #: js/users.js:429 js/users.js:435 js/users.js:450 msgid "Error creating user" -msgstr "" +msgstr "사용자 생성 오류" #: js/users.js:434 msgid "A valid password must be provided" -msgstr "" +msgstr "올바른 암호를 입력해야 함" #: personal.php:35 personal.php:36 msgid "__language_name__" @@ -190,26 +191,26 @@ msgstr "설정 경고" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "설치 가이드를 다시 한 번 확인하십시오." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "모듈 'fileinfo'가 없음" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "로캘이 작동하지 않음" #: templates/admin.php:63 #, php-format @@ -217,11 +218,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "ownCloud 서버의 시스템 로캘을 %s(으)로 설정할 수 없습니다. 파일 이름에 특정한 글자가 들어가 있는 경우 문제가 발생할 수 있습니다. %s을(를) 지원하기 위해서 시스템에 필요한 패키지를 설치하는 것을 추천합니다." #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "인터넷에 연결할 수 없음" #: templates/admin.php:78 msgid "" @@ -231,7 +232,7 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "ownCloud 서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 외부 앱 설치 등이 작동하지 않을 것입니다. 외부에서 파일에 접근하거나, 알림 이메일을 보내지 못할 수도 있습니다. ownCloud의 모든 기능을 사용하려면 이 서버를 인터넷에 연결하는 것을 추천합니다." #: templates/admin.php:92 msgid "Cron" @@ -239,74 +240,74 @@ msgstr "크론" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "개별 페이지를 불러올 때마다 실행" #: templates/admin.php:111 msgid "" "cron.php is registered at a webcron service. Call the cron.php page in the " "owncloud root once a minute over http." -msgstr "" +msgstr "cron.php가 webcron 서비스에 등록되어 있습니다. HTTP를 통하여 1분마다 ownCloud 루트에서 cron.php 페이지를 불러옵니다." #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "시스템 cron 서비스를 사용합니다. 시스템 cronjob을 사용하여 ownCloud 폴더의 cron.php 파일을 1분마다 불러옵니다." #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "공유" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "공유 API 사용하기" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "앱에서 공유 API를 사용할 수 있도록 허용" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "링크 허용" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "재공유 허용" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "누구나와 공유할 수 있도록 허용" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "보안" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "HTTPS 강제 사용" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "클라이언트가 ownCloud에 항상 암호화된 연결로 연결하도록 강제합니다." #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "SSL 강제 사용 설정을 변경하려면 ownCloud 인스턴스에 HTTPS로 연결하십시오." #: templates/admin.php:195 msgid "Log" @@ -340,7 +341,7 @@ msgstr "ownCloud 커 #: templates/apps.php:13 msgid "Add your App" -msgstr "앱 추가" +msgstr "내 앱 추가" #: templates/apps.php:28 msgid "More Apps" @@ -388,7 +389,7 @@ msgstr "상업용 지원" #: templates/personal.php:9 msgid "Get the apps to sync your files" -msgstr "앱을 이용하여 당신의 파일을 동기화 할 수 있습니다." +msgstr "파일 동기화 앱 가져오기" #: templates/personal.php:20 msgid "Show First Run Wizard again" @@ -397,7 +398,7 @@ msgstr "첫 실행 마법사 다시 보이기" #: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" -msgstr "현재 공간 %s/%s을(를) 사용 중입니다" +msgstr "현재 공간 중 %s/%s을(를) 사용 중입니다" #: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" @@ -437,7 +438,7 @@ msgstr "이메일 주소" #: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" -msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오." +msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오" #: templates/personal.php:86 templates/personal.php:87 msgid "Language" @@ -453,9 +454,9 @@ msgstr "WebDAV" #: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오." +msgstr "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "로그인 이름" @@ -465,13 +466,13 @@ msgstr "만들기" #: templates/users.php:36 msgid "Admin Recovery Password" -msgstr "" +msgstr "관리자 복구 암호" #: templates/users.php:37 templates/users.php:38 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "암호 변경 시 변경된 사용자 파일을 복구하려면 복구 암호를 입력하십시오" #: templates/users.php:42 msgid "Default Storage" @@ -485,6 +486,10 @@ msgstr "무제한" msgid "Other" msgstr "기타" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "저장소" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index 2a7f029a24..d991b819e3 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 3d7f490130..78e87007d7 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "ناوی به‌کارهێنه‌ر" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 9a2ff3ef12..e162e33d63 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 49c080d51a..211202fbca 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index d6142b72fa..08b3b8a14b 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 3faafe6ae2..8700026723 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 23c924fca5..92b2081728 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index db31efefc0..65e2d1acec 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index b5a1a44c7f..86ae1a30f2 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud Passwuert reset" @@ -403,17 +403,17 @@ msgstr "Benotzernumm" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Reset ufroen" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 512574955f..18f3d5206d 100644 --- a/l10n/lb/files.po +++ b/l10n/lb/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 5d7c62b024..bb4ccba144 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index a8a1efd871..f3424cf9e6 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 77c023839e..a91b329c81 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 5edb6bf7cb..57c7170f45 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 95d50e408f..94b23d8113 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Aner" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index c446c6cde9..016321ae70 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 87326451f0..1d7345a544 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -375,7 +375,7 @@ msgstr "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 279e4ecca2..5f2e3c973a 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Min2liz \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index 1170e9cd74..130e74a8ca 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 8a19d2228c..22c02c7621 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 50969599f6..17e417b128 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index fc2e5cbde3..50a0c6b889 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Kita" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index e08e73f004..692455fe6b 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 989e1dd0fe..aeecdbcc0b 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud paroles maiņa" @@ -403,17 +403,17 @@ msgstr "Lietotājvārds" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Pieprasīt paroles maiņu" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 9974169f78..70e336f3c2 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index fd24572a4e..5091aef977 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 4b4344dd01..e6589d8471 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 551916f2e6..268e5cb83b 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 0cae6dff22..2b31d77e2b 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 1e817ddafb..808050d5e9 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Izmanto šo adresi, lai, izmantojot datņu pārvaldnieku, savienotos ar savu ownCloud" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Ierakstīšanās vārds" @@ -485,6 +485,10 @@ msgstr "Neierobežota" msgid "Other" msgstr "Cits" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Krātuve" diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 7344f655cc..3236dc529c 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index b06c38b7a8..ceab38ec52 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ресетирање на лозинка за ownCloud" @@ -403,17 +403,17 @@ msgstr "Корисничко име" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Побарајте ресетирање" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 5abc414a93..64bdee0d82 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index 7e263fe17a..9ee5208ae1 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 2b8e2ee9dd..6d4e7de636 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 08b963c0d4..a067109703 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 49860ec562..88f504ec8d 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index ec03061712..6aab64dd58 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Користете ја оваа адреса да " -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Останато" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index de26e6ebdc..542594ee03 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index fd9a55023c..b9bfecf040 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Set semula kata lalaun ownCloud" @@ -403,17 +403,17 @@ msgstr "Nama pengguna" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Permintaan set semula" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 8edf34b642..8a161d8d0b 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index d300593600..925a8bbca0 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index dd3c5ff066..565b4ef173 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index 041abd2e68..527461b4c6 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 36e1349d02..6fb1d26b7c 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 5b1db982a6..dc8796f58d 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Lain" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index fa4b72f8bf..af98422747 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 9fbe6b5d25..3fda0f7232 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "သုံးစွဲသူအမည်" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index e4ca429ac6..933a437558 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 1849762a5c..12295a5dd0 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 1ca175b3a3..61bff8a502 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 6053a208e8..c58c75e327 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "စကားဝှက်" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "စကားဝှက်အသစ်" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 449a9b2e80..3b20831884 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Tilbakestill ownCloud passord" @@ -403,17 +403,17 @@ msgstr "Brukernavn" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Anmod tilbakestilling" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index bfeb795558..c6640901f2 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 51bf909ab1..26aa1e8ef9 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 494e23d385..bd9e4234c9 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index ac4a0b06dd..4561e8382d 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Hans Nesse <>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 2287b927ba..1f6206fdbf 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index e2703aba19..ab670d6863 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bruk denne adressen for å kople til ownCloud i din filbehandler" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Logginn navn" @@ -486,6 +486,10 @@ msgstr "Ubegrenset" msgid "Other" msgstr "Annet" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Lager" diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 42dd889569..ef275a2e26 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 049092f64c..f9febd9c8d 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 4c04e9f3f2..ae9c39a29d 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 5bd0934936..3b5fc2bedb 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -374,7 +374,7 @@ msgstr "De update is niet geslaagd. Meld dit probleem aan bij de \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index 65456eb1a5..d8b9b5dc11 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 3f358b5f3f..b17f21eda4 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 0d0ebd61dc..ee6c5a604a 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index d92616fec6..bfbd39f38c 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 9c5531667f..bbc411248e 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Gebruik dit adres om te verbinden met uw ownCloud in uw bestandsbeheer" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Inlognaam" @@ -487,6 +487,10 @@ msgstr "Ongelimiteerd" msgid "Other" msgstr "Anders" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Opslaglimiet" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index d4fd310eb0..e38b9f4e5d 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 9f29b96532..f45f12d586 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -375,7 +375,7 @@ msgstr "Oppdateringa feila. Ver venleg og rapporter feilen til \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index c852482e2d..a97047e26c 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index c719092380..a637487a09 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index c5343cdc10..d076d377ad 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index b7a3c9a527..731025e333 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 4e2518f5e1..6691b5fdd1 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bruk denne adressa for å kopla til din ownCloud frå filhandsamaren din" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Innloggingsnamn" @@ -487,6 +487,10 @@ msgstr "Ubegrensa" msgid "Other" msgstr "Anna" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Lagring" diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index b60eab63d9..7f17e1d4ac 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index c45baab221..e6829f4ada 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "senhal d'ownCloud tornat botar" @@ -403,17 +403,17 @@ msgstr "Non d'usancièr" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Tornar botar requesit" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index f9c028e8ba..34b7621753 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index c1e89d8c20..a8982c06c1 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 55334c7b38..41ffa94fec 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 2cc5a6be43..d1564e43cc 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index f0370c527a..6310138439 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 8ef4194513..5602d0f554 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Autres" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 327fb14259..8caf04f077 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 166959ad34..333068ba18 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -375,7 +375,7 @@ msgstr "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 4355e11e1a..7fa9637f66 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index 7e3f65d3e0..3b71d8e351 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 057a6d4574..983ccf1a41 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 3dd674aa26..96d8b67950 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 3b4b174c8e..2dda16be6f 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Użyj tego adresu aby podłączyć zasób ownCloud w menedżerze plików" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Login" @@ -487,6 +487,10 @@ msgstr "Bez limitu" msgid "Other" msgstr "Inne" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Magazyn" diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index 0844f4966e..92bc0fdfc2 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: orcio6 \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 24c6633daa..0729dfebac 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "A atualização falhou. Por favor, relate este problema para a \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 2b4961578c..55e2b73bde 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index 2a18d32ef3..af8cb5a0b5 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index b1efddcd99..4e1a912207 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index aacd4fe1d5..2a401807b6 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index edc25fa74d..e01a1efcbb 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: bjamalaro \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Usar este endereço para conectar-se ao seu ownCloud no seu gerenciador de arquivos" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nome de Login" @@ -487,6 +487,10 @@ msgstr "Ilimitado" msgid "Other" msgstr "Outro" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Armazenamento" diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index f5e0ff4957..425d5d883b 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 4b4eec07dc..08bc7e98b0 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -375,7 +375,7 @@ msgstr "A actualização falhou. Por favor reporte este incidente seguindo este msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Reposição da password ownCloud" @@ -405,17 +405,17 @@ msgstr "Nome de utilizador" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Pedir reposição" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 9a29b920e2..b9018aa97e 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: bmgmatias \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index df51e6e9c1..23881e019a 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index a2f54eba54..fe0c04a098 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 2d760918f5..7d6d1ef6b8 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 79c33e6fb0..f6168e8a75 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 0091e9b955..42457e18d1 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Nelson Rosado \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -458,7 +458,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Use este endereço no seu gestor de ficheiros para ligar à sua ownCloud" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Nome de utilizador" @@ -488,6 +488,10 @@ msgstr "Ilimitado" msgid "Other" msgstr "Outro" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Armazenamento" diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index f30f8d5c49..8ee4c7b500 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Mouxy \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 39679306bb..a673e3d4bc 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "Modernizarea a eșuat! \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index e09c56f430..66eae57aff 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index efad360988..dba3209a69 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index aa66687615..d28ddc0642 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index ee4acac120..a1ada69848 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 8ce6275f98..dec69e6df5 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Folosește această adresă pentru a conecta ownCloud cu managerul de fișiere" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "Nelimitată" msgid "Other" msgstr "Altele" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Stocare" diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 6a4da4c931..d619372d5e 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index c6e4faf171..eb2e189c3c 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# alfsoft , 2013 # foool , 2013 # Vyacheslav Muranov , 2013 # Langaru , 2013 @@ -10,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -23,7 +24,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s поделился »%s« с вами" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -376,7 +377,7 @@ msgstr "При обновлении произошла ошибка. Пожал msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud..." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Сброс пароля " @@ -406,17 +407,17 @@ msgstr "Имя пользователя" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Да, я действительно хочу сбросить свой пароль" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Запросить сброс" @@ -473,7 +474,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Приветствую,⏎\n⏎\nпросто даю знать, что %s поделился %s с вами.⏎\nПосмотреть: %s⏎\n⏎\nУдачи!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -615,7 +616,7 @@ msgstr "Альтернативные имена пользователя" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Приветствую,

    просто даю знать, что %s поделился »%s« с вами.
    Посмотреть!

    Удачи!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 0841c4f3f5..7db0a84742 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index b1bc75c9e2..e775118fd1 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # Ант По , 2013 +# alfsoft , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 18:20+0000\n" +"Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Ключ восстановления успешно установлен" #: ajax/adminrecovery.php:34 msgid "" @@ -29,7 +30,7 @@ msgstr "" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Ключ восстановления успешно отключен" #: ajax/adminrecovery.php:53 msgid "" @@ -77,7 +78,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "персональные настройки" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -128,7 +129,7 @@ msgstr "" msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Если вы не помните свой старый пароль, вы можете попросить своего администратора восстановить ваши файлы" #: templates/settings-personal.php:24 msgid "Old log-in password" @@ -150,7 +151,7 @@ msgstr "" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Включение этой опции позволит вам получить доступ к своим зашифрованным файлам в случае утери пароля" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index d1d2bdae79..622cb8655e 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 793d2e4313..48d46076a0 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 26d23e4e2b..8fa1e749fa 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index fe0233fe3e..729811d776 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 146aea670c..1c1eba999b 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# alfsoft , 2013 # eurekafag , 2013 # Friktor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -457,7 +458,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Используйте этот URL для подключения файлового менеджера к Вашему хранилищу" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Имя пользователя" @@ -473,7 +474,7 @@ msgstr "Восстановление Пароля Администратора" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Введите пароль для того, чтобы восстановить файлы пользователей при смене пароля" #: templates/users.php:42 msgid "Default Storage" @@ -487,6 +488,10 @@ msgstr "Неограниченно" msgid "Other" msgstr "Другое" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Хранилище" diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index 4225863083..6e420385c3 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # Fenuks , 2013 +# alfsoft , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" -"Last-Translator: Fenuks \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"Last-Translator: alfsoft \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -359,7 +360,7 @@ msgid "" "achieve a similar behaviour as before ownCloud 5 enter the user display name" " attribute in the following field. Leave it empty for default behaviour. " "Changes will have effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "По-умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Это необходимо для того, чтобы имя пользователя было уникальным и не содержало в себе запрещенных символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по-умолчанию для папки пользователя в ownCloud. Оно также портом для удаленных ссылок, к примеру, для всех сервисов *DAV. С помощию данной настройки можно изменить поведение по-умолчанию. Чтобы достичь поведения, как было настроено до изменения, ownCloud 5 выводит атрибут имени пользователя в этом поле. Оставьте его пустым для режима по-умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -378,7 +379,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behaviour. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -401,7 +402,7 @@ msgid "" "configuration sensitive, it affects all LDAP configurations! Do never clear " "the mappings in a production environment. Only clear mappings in a testing " "or experimental stage." -msgstr "" +msgstr "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует наличия соответствия имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кэшируется доменное имя (DN) для снижения взаимодействия LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. При очистке соответствий повсюду будут оставаться \"хвосты\". Очистка соответствий не привязана к конкретной конфигурации, она влияет на все конфигурации LDAP! Никогда не очищайте соответствия в рабочем окружении. Очищайте соответствия только во время тестов или в экспериментальных конфигурациях." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 76afa92915..76b5e7133d 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud මුරපදය ප්‍රත්‍යාරම්භ කරන්න" @@ -403,17 +403,17 @@ msgstr "පරිශීලක නම" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index b57b9b2e33..7d3d7be6c2 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index d0462af78c..691823c348 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 41e8620557..f7a2c4679f 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index ca694915d0..492a724f30 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index e71e65734a..828721cf1a 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 0b0e7809bb..e560b8119e 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "වෙනත්" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index d3fdb1d1cb..0a154f1092 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 4910cee063..445c6c56a6 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index 145d6154a7..f5acdcadf8 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 30cb2fc0ed..3776146df0 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "Aktualizácia nebola úspešná. Problém nahláste na \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index e9dfd3c1fa..d823436242 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index 2c5230b58a..ecef7a619d 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index c5f289c2ef..2ab26f9e0f 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index a8be2af500..75187ce7e5 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 8c86911261..e0c8adf6b9 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Použite túto adresu pre pripojenie vášho ownCloud k súborovému správcovi" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Prihlasovacie meno" @@ -486,6 +486,10 @@ msgstr "Nelimitované" msgid "Other" msgstr "Iné" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Úložisko" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index e631f4308e..9f4af4a543 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index e69ffc6d17..80d4aa09b9 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index a6add05920..a81b3adc4c 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index c4a1ede576..863c9a7a47 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index 40beaa5ec1..581b0b9974 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 72a75911e0..ebae3210a5 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index aa17f1fd1e..9b8ef4081e 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Ta naslov uporabite za povezavo upravljalnika datotek z oblakom ownCloud." -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Prijavno ime" @@ -486,6 +486,10 @@ msgstr "Neomejeno" msgid "Other" msgstr "Drugo" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Shramba" diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index 410ea6e96c..d4303cb906 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 0362c0f0f6..47885c4782 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index a2181f4ceb..7762dd7790 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 0c60f8e7c5..2b2036cb1a 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index b96bc44627..a3f50ea2ec 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 92b62f4aa4..8505ea8ede 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 340937b73c..b05821f97a 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index bd1917ce31..aa13ffc94f 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index a6d663290a..635d71bf73 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "Поништавање лозинке за ownCloud" @@ -403,17 +403,17 @@ msgstr "Корисничко име" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Захтевај ресетовање" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 8487dbcdfd..aaab267489 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index b6c024e580..33a5c8be41 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 7c642b6d9f..8b9058c0cc 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index cc08e12f5f..6abaf004f4 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index cfcf7765ff..e8bb02dcc5 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index ef9e66002d..29b1234e5b 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Корисничко име" @@ -485,6 +485,10 @@ msgstr "Неограничено" msgid "Other" msgstr "Друго" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Складиште" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index b566229fdd..376723eaf6 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 6c6a9f3983..d3e5c203bb 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "Korisničko ime" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Zahtevaj resetovanje" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index bb38a5e94f..a17aa2223b 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index 0fe4dfceb1..68c91aa83d 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index 06ec8f8903..e6a56c9c99 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 6d937f02f1..5c0949d467 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 03dde2026b..5a8270d20f 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 47009db2cb..c9838e97ba 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "Drugo" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 1df944df27..e6677c3576 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -376,7 +376,7 @@ msgstr "Uppdateringen misslyckades. Rapportera detta problem till \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index 65010140e9..56605056f5 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:58+0200\n" -"PO-Revision-Date: 2013-06-15 16:00+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 19:40+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -151,7 +151,7 @@ msgstr "Aktivera lösenordsåterställning" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Genom att aktivera detta alternativ kommer du kunna återfå tillgång till dina krypterade filer om du skulle förlora/glömma ditt lösenord" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index cb4b4562d2..68a9891511 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 672c00adea..e38b2d7af3 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 4bfc8f8769..1342ee0e60 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index d65f50002f..1cf77f3aed 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index ac2feb1913..3ac80cfeca 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" -"Last-Translator: Gunnar Norin \n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -459,7 +459,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Använd denna adress för att ansluta till ownCloud i din filhanterare" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Inloggningsnamn" @@ -489,6 +489,10 @@ msgstr "Obegränsad" msgid "Other" msgstr "Annat" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Lagring" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 2a46fd7607..a67b7cde93 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 1fc1e95945..684e3ec49c 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-14 23:59+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 668dde05ff..01bbab7a24 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-11 01:57+0200\n" -"PO-Revision-Date: 2013-06-10 23:57+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -324,11 +324,11 @@ msgstr "" msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:235 templates/personal.php:116 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:237 templates/personal.php:119 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -386,76 +386,76 @@ msgstr "" msgid "Commercial Support" msgstr "" -#: templates/personal.php:8 +#: templates/personal.php:9 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:20 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:28 #, php-format msgid "You have used %s of the available %s" msgstr "" -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:40 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:38 +#: templates/personal.php:41 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:42 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:43 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:45 msgid "New password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:47 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:85 +#: templates/personal.php:59 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:74 msgid "Email" msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:76 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:77 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:86 templates/personal.php:87 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:99 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:105 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 +#: templates/personal.php:107 msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 97f45ad61e..b8d1e342b3 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "ownCloud இன் கடவுச்சொல் மீளமைப்பு" @@ -403,17 +403,17 @@ msgstr "பயனாளர் பெயர்" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "கோரிக்கை மீளமைப்பு" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index e6d77aa686..b5f0693368 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index f6143aff03..9e31b09d6f 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 75eb7467a2..9d6a261a4f 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 3cd0745c43..2d12db27c0 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 1149d963bf..e25aaae209 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 4d71ce572a..7400ddf0f1 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "மற்றவை" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index 5ecd014ccf..2340038867 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/core.po b/l10n/te/core.po index 56fd49d087..1f75cf864a 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "వాడుకరి పేరు" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index fbeedda4d9..8c548cedf8 100644 --- a/l10n/te/files.po +++ b/l10n/te/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index ab3962c0ca..7a9afec176 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 9bf88336a0..314732f42f 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 2fccc35c54..c1e3a598c3 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 00:14+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 08ddb3568f..f53dd580f8 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 6e0caff463..898b58b8e6 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index b8268a00c8..7da1f84a5b 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index d361349ded..610eb6a0e9 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 0be4454a96..b8b591f065 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index eddde9e6db..f32754dfba 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 19dbe5af2c..bc5d327dd4 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 5083a4af5f..f3a39fcc23 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 1888b00610..04bda81c99 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index f590078f67..75a15683dc 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index cf71b2630b..953d83a011 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index ac9b0adc35..296e4ea53f 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 891723aaee..e94801398c 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index d035df9d43..fb6f5828b1 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "การอัพเดทไม่เป็นผลสำเร็จ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "รีเซ็ตรหัสผ่าน ownCloud" @@ -403,17 +403,17 @@ msgstr "ชื่อผู้ใช้งาน" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "ขอเปลี่ยนรหัสใหม่" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index ca5890d3bf..9b3fcf2ad0 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 49fefce6f4..555256c98a 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index d2645c87d5..432d769cea 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 4a33cc3a9d..a29bf9dab1 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 38727ddad8..d547fe96ce 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 85de4cc213..27f3b5cd53 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "ใช้ที่อยู่นี้เพื่อเชื่อมต่อกับ ownCloud ในโปรแกรมจัดการไฟล์ของคุณ" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "ชื่อที่ใช้สำหรับเข้าสู่ระบบ" @@ -485,6 +485,10 @@ msgstr "ไม่จำกัดจำนวน" msgid "Other" msgstr "อื่นๆ" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "พื้นที่จัดเก็บข้อมูล" diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index 91e1143068..4c229bf04b 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:30+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 3d673fccf9..ad33125d5a 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index e6b03a315e..258a3ce1e2 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index ef103f5465..8f1e4fbfef 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index cac84aa2c0..e6fe5b68be 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 3b8cf94d08..8fd8b94f26 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index d7be2a35d2..bbd5324ff7 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Bu adresi kullanarak ownCloud 'unuza dosya yöneticinizde bağlanın" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Giriş Adı" @@ -486,6 +486,10 @@ msgstr "Limitsiz" msgid "Other" msgstr "Diğer" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Depolama" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 32c7be3615..ef44ce7c6c 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index ff21d7418b..00cc27368f 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "ئىشلەتكۈچى ئاتى" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index 30195bbf90..2922c4a221 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_external.po b/l10n/ug/files_external.po index 22c1597b40..2c0da065a6 100644 --- a/l10n/ug/files_external.po +++ b/l10n/ug/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 0683edc01d..02c4392e60 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index c428d6b843..4f0d187ed7 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 00954cc517..9aaee0fbfc 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index 6cfc067e97..f126a94030 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "تىزىمغا كىرىش ئاتى" @@ -485,6 +485,10 @@ msgstr "چەكسىز" msgid "Other" msgstr "باشقا" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "ساقلىغۇچ" diff --git a/l10n/ug/user_ldap.po b/l10n/ug/user_ldap.po index ece52c093f..cd50dee58e 100644 --- a/l10n/ug/user_ldap.po +++ b/l10n/ug/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 154cc17f94..7f91d00254 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "Оновлення виконалось неуспішно. Будь л msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud." -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "скидання пароля ownCloud" @@ -403,17 +403,17 @@ msgstr "Ім'я користувача" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "Запит скидання" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index b4f74b99b0..0ff24018a3 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index c24147f7b6..65d6bb4245 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index c6eecb1a58..26ba19e046 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 79239521bf..4bf59eddfd 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 176f4c85dc..db2b45bb28 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 5282f8888c..bb92f7d649 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Використовуйте цю адресу для під'єднання до вашого ownCloud у вашому файловому менеджері" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Ім'я Логіну" @@ -485,6 +485,10 @@ msgstr "Необмежено" msgid "Other" msgstr "Інше" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Сховище" diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index 09729c2383..9d3c12b966 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index f75e751237..a3366d3a14 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "اون کلاؤڈ پاسورڈ ری سیٹ" @@ -403,17 +403,17 @@ msgstr "یوزر نیم" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "ری سیٹ کی درخواست کریں" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 01f8e2016c..51252b6fe1 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 889ca75c10..a45fc961be 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index ffd3f065ba..8b98a23089 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 00:14+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 00:13+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 6361795021..d83721115e 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 2434c645b3..4507815460 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 0bc1ed8ae6..98bce5ec53 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "Cập nhật không thành công . Vui lòng thông báo đến \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index 3cc75649bd..5d7a7dffaa 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: xtdv \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index a995600c0e..5fcfc9815e 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 63d11064fd..64f094cea0 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 8c9c753e8e..df72dc1f3b 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index e6c83125bf..bdfd8e0a85 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "Sử dụng địa chỉ này để kết nối ownCloud của bạn trong trình quản lý file của bạn" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "Tên đăng nhập" @@ -485,6 +485,10 @@ msgstr "Không giới hạn" msgid "Other" msgstr "Khác" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "Bộ nhớ" diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index a286cf0e7b..a65956714e 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index 692dba1d71..b1b2e47f3f 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -375,7 +375,7 @@ msgstr "升级失败。请向\n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 1573b564c8..49b189a8d6 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: hyy0591 \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index cf575798dd..0f84297bc7 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index f84d2cc0fa..92d5927675 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 24bcd47460..5bf55df586 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 4a9e28313f..ca099c6319 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "使用此地址来在您的文件管理器中连接您的ownCloud" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "登录名" @@ -486,6 +486,10 @@ msgstr "无限制" msgid "Other" msgstr "其他" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "容量" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index 656b6c2c0d..903b4996da 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index fae12fa18d..dc94c2f0a1 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "更新不成功。请汇报将此问题汇报给 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index fa2308904c..ac18f3ac08 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 8f5642d27c..9db06469b3 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index fe11229bd8..0cb623efb1 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index f99970bdbf..aa95f9543b 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 30f123b1c4..dcb303f27e 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -457,7 +457,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "用该地址来连接文件管理器中的 ownCloud" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "登录名称" @@ -487,6 +487,10 @@ msgstr "无限" msgid "Other" msgstr "其它" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "存储" diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index 6b003df148..dc5e4da435 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index a3cc301fbb..b76c08c2ae 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:24+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -373,7 +373,7 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "更新成功, 正" -#: lostpassword/controller.php:58 +#: lostpassword/controller.php:60 msgid "ownCloud password reset" msgstr "" @@ -403,17 +403,17 @@ msgstr "用戶名稱" #: lostpassword/templates/lostpassword.php:22 msgid "" -"Your files seems to be encrypted. If you didn't have enabled the recovery " -"key there will be no way to get your data back once the password was " -"resetted. If you are not sure what to do, please contact your administrator " -"first before continue. Do you really want to continue?" +"Your files are encrypted. If you haven't enabled the recovery key, there " +"will be no way to get your data back after your password is reset. If you " +"are not sure what to do, please contact your administrator before you " +"continue. Do you really want to continue?" msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" msgstr "" -#: lostpassword/templates/lostpassword.php:29 +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "重設" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 26fc857767..4312de55eb 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index 5920df66af..f2f5b603f8 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 011b83a5cd..25a5f56b67 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 3a8d9f9fe8..d9919ed970 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 3edab0d07d..dfa65b5f23 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 0ce83b2e97..ef4d61b3d1 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -455,7 +455,7 @@ msgstr "" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -485,6 +485,10 @@ msgstr "" msgid "Other" msgstr "" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "" diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index ff435eb4ee..d111deb897 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 4521623ad8..365c737750 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -374,7 +374,7 @@ msgstr "升級失敗,請將此問題回報 \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 4f54fefcc7..b5368be495 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 8e948a8ecf..720222f264 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 7cac89f323..757f23648d 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 7841bdd34b..e0f2705ea2 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:28+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 07a13cbee0..96d7376c8b 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:05+0200\n" -"PO-Revision-Date: 2013-06-17 23:25+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-20 00:37+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -456,7 +456,7 @@ msgstr "WebDAV" msgid "Use this address to connect to your ownCloud in your file manager" msgstr "在您的檔案管理員中使用這個地址來連線到 ownCloud" -#: templates/users.php:21 templates/users.php:84 +#: templates/users.php:21 msgid "Login Name" msgstr "登入名稱" @@ -486,6 +486,10 @@ msgstr "無限制" msgid "Other" msgstr "其他" +#: templates/users.php:84 +msgid "Username" +msgstr "" + #: templates/users.php:91 msgid "Storage" msgstr "儲存區" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index 8008599c38..51d7a7206d 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/user_ldap.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 23:26+0000\n" +"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"PO-Revision-Date: 2013-06-18 23:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index bf2a68369f..bfb99544a3 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -16,6 +16,8 @@ "Files" => "파일", "Text" => "텍스트", "Images" => "그림", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", +"Please double check the installation guides." => "설치 가이드를 다시 한 번 확인하십시오.", "seconds ago" => "초 전", "1 minute ago" => "1분 전", "%d minutes ago" => "%d분 전", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 872e8f971d..636a3e2c95 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -102,6 +102,7 @@ "Login Name" => "Bejelentkezési név", "Create" => "Létrehozás", "Admin Recovery Password" => "A jelszóvisszaállítás adminisztrációja", +"Enter the recovery password in order to recover the users files during password change" => "Adja meg az adatok visszanyeréséhez szükséges jelszót arra az esetre, ha a felhasználók megváltoztatják a jelszavukat", "Default Storage" => "Alapértelmezett tárhely", "Unlimited" => "Korlátlan", "Other" => "Más", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index c58a578cae..ee80477d22 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -1,39 +1,76 @@ "앱 스토어에서 목록을 가져올 수 없습니다", "Authentication error" => "인증 오류", -"Group already exists" => "그룹이 이미 존재합니다.", -"Unable to add group" => "그룹을 추가할 수 없습니다.", +"Your display name has been changed." => "표시 이름이 변경되었습니다.", +"Unable to change display name" => "표시 이름을 변경할 수 없음", +"Group already exists" => "그룹이 이미 존재함", +"Unable to add group" => "그룹을 추가할 수 없음", "Could not enable app. " => "앱을 활성화할 수 없습니다.", "Email saved" => "이메일 저장됨", "Invalid email" => "잘못된 이메일 주소", -"Unable to delete group" => "그룹을 삭제할 수 없습니다.", -"Unable to delete user" => "사용자를 삭제할 수 없습니다.", -"Language changed" => "언어가 변경되었습니다", +"Unable to delete group" => "그룹을 삭제할 수 없음", +"Unable to delete user" => "사용자를 삭제할 수 없음.", +"Language changed" => "언어가 변경됨", "Invalid request" => "잘못된 요청", -"Admins can't remove themself from the admin group" => "관리자 자신을 관리자 그룹에서 삭제할 수 없습니다", -"Unable to add user to group %s" => "그룹 %s에 사용자를 추가할 수 없습니다.", -"Unable to remove user from group %s" => "그룹 %s에서 사용자를 삭제할 수 없습니다.", +"Admins can't remove themself from the admin group" => "관리자 자신을 관리자 그룹에서 삭제할 수 없음", +"Unable to add user to group %s" => "그룹 %s에 사용자를 추가할 수 없음", +"Unable to remove user from group %s" => "그룹 %s에서 사용자를 삭제할 수 없음", +"Couldn't update app." => "앱을 업데이트할 수 없습니다.", +"Update to {appversion}" => "버전 {appversion}(으)로 업데이트", "Disable" => "비활성화", "Enable" => "사용함", +"Please wait...." => "기다려 주십시오....", "Error" => "오류", +"Updating...." => "업데이트 중....", +"Error while updating app" => "앱을 업데이트하는 중 오류 발생", +"Updated" => "업데이트됨", "Saving..." => "저장 중...", -"deleted" => "삭제", -"undo" => "되돌리기", +"deleted" => "삭제됨", +"undo" => "실행 취소", +"Unable to remove user" => "사용자를 삭제할 수 없음", "Groups" => "그룹", "Group Admin" => "그룹 관리자", "Delete" => "삭제", +"add group" => "그룹 추가", +"A valid username must be provided" => "올바른 사용자 이름을 입력해야 함", +"Error creating user" => "사용자 생성 오류", +"A valid password must be provided" => "올바른 암호를 입력해야 함", "__language_name__" => "한국어", "Security Warning" => "보안 경고", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "데이터 디렉터리와 파일을 인터넷에서 접근할 수 있는 것 같습니다. ownCloud에서 제공한 .htaccess 파일이 작동하지 않습니다. 웹 서버를 다시 설정하여 데이터 디렉터리에 접근할 수 없도록 하거나 문서 루트 바깥쪽으로 옮기는 것을 추천합니다.", "Setup Warning" => "설정 경고", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", +"Please double check the installation guides." => "설치 가이드를 다시 한 번 확인하십시오.", +"Module 'fileinfo' missing" => "모듈 'fileinfo'가 없음", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다.", +"Locale not working" => "로캘이 작동하지 않음", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 서버의 시스템 로캘을 %s(으)로 설정할 수 없습니다. 파일 이름에 특정한 글자가 들어가 있는 경우 문제가 발생할 수 있습니다. %s을(를) 지원하기 위해서 시스템에 필요한 패키지를 설치하는 것을 추천합니다.", +"Internet connection not working" => "인터넷에 연결할 수 없음", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "ownCloud 서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 외부 앱 설치 등이 작동하지 않을 것입니다. 외부에서 파일에 접근하거나, 알림 이메일을 보내지 못할 수도 있습니다. ownCloud의 모든 기능을 사용하려면 이 서버를 인터넷에 연결하는 것을 추천합니다.", "Cron" => "크론", +"Execute one task with each page loaded" => "개별 페이지를 불러올 때마다 실행", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php가 webcron 서비스에 등록되어 있습니다. HTTP를 통하여 1분마다 ownCloud 루트에서 cron.php 페이지를 불러옵니다.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "시스템 cron 서비스를 사용합니다. 시스템 cronjob을 사용하여 ownCloud 폴더의 cron.php 파일을 1분마다 불러옵니다.", +"Sharing" => "공유", +"Enable Share API" => "공유 API 사용하기", +"Allow apps to use the Share API" => "앱에서 공유 API를 사용할 수 있도록 허용", +"Allow links" => "링크 허용", +"Allow users to share items to the public with links" => "사용자가 개별 항목의 링크를 공유할 수 있도록 허용", +"Allow resharing" => "재공유 허용", +"Allow users to share items shared with them again" => "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용", +"Allow users to share with anyone" => "누구나와 공유할 수 있도록 허용", +"Allow users to only share with users in their groups" => "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용", +"Security" => "보안", +"Enforce HTTPS" => "HTTPS 강제 사용", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "클라이언트가 ownCloud에 항상 암호화된 연결로 연결하도록 강제합니다.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "SSL 강제 사용 설정을 변경하려면 ownCloud 인스턴스에 HTTPS로 연결하십시오.", "Log" => "로그", "Log level" => "로그 단계", "More" => "더 중요함", "Less" => "덜 중요함", "Version" => "버전", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud 커뮤니티에 의해서 개발되었습니다. 원본 코드AGPL에 따라 사용이 허가됩니다.", -"Add your App" => "앱 추가", +"Add your App" => "내 앱 추가", "More Apps" => "더 많은 앱", "Select an App" => "앱 선택", "See application page at apps.owncloud.com" => "apps.owncloud.com에 있는 앱 페이지를 참고하십시오", @@ -45,9 +82,9 @@ "Forum" => "포럼", "Bugtracker" => "버그 트래커", "Commercial Support" => "상업용 지원", -"Get the apps to sync your files" => "앱을 이용하여 당신의 파일을 동기화 할 수 있습니다.", +"Get the apps to sync your files" => "파일 동기화 앱 가져오기", "Show First Run Wizard again" => "첫 실행 마법사 다시 보이기", -"You have used %s of the available %s" => "현재 공간 %s/%s을(를) 사용 중입니다", +"You have used %s of the available %s" => "현재 공간 중 %s/%s을(를) 사용 중입니다", "Password" => "암호", "Your password was changed" => "암호가 변경되었습니다", "Unable to change your password" => "암호를 변경할 수 없음", @@ -57,13 +94,15 @@ "Display Name" => "표시 이름", "Email" => "이메일", "Your email address" => "이메일 주소", -"Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오.", +"Fill in an email address to enable password recovery" => "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오", "Language" => "언어", "Help translate" => "번역 돕기", "WebDAV" => "WebDAV", -"Use this address to connect to your ownCloud in your file manager" => "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오.", +"Use this address to connect to your ownCloud in your file manager" => "파일 관리자에서 ownCloud에 접속하려면 이 주소를 사용하십시오", "Login Name" => "로그인 이름", "Create" => "만들기", +"Admin Recovery Password" => "관리자 복구 암호", +"Enter the recovery password in order to recover the users files during password change" => "암호 변경 시 변경된 사용자 파일을 복구하려면 복구 암호를 입력하십시오", "Default Storage" => "기본 저장소", "Unlimited" => "무제한", "Other" => "기타", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 3d852d3b20..32b7b65e90 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -102,6 +102,7 @@ "Login Name" => "Имя пользователя", "Create" => "Создать", "Admin Recovery Password" => "Восстановление Пароля Администратора", +"Enter the recovery password in order to recover the users files during password change" => "Введите пароль для того, чтобы восстановить файлы пользователей при смене пароля", "Default Storage" => "Хранилище по-умолчанию", "Unlimited" => "Неограниченно", "Other" => "Другое", From 91c0b81130da4fc781ea700ca015e387947d3542 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 20 Jun 2013 10:18:29 +0200 Subject: [PATCH 13/36] add missing backticks guys, please ... --- lib/user/database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/user/database.php b/lib/user/database.php index d70b620f2a..9f00a022d9 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -85,7 +85,7 @@ class OC_User_Database extends OC_User_Backend { */ public function deleteUser( $uid ) { // Delete user-group-relation - $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*users` WHERE uid = ?' ); + $query = OC_DB::prepare( 'DELETE FROM `*PREFIX*users` WHERE `uid` = ?' ); $query->execute( array( $uid )); return true; } From 5d0a3f981c1be8f9a0fd42f3172acf89259739a2 Mon Sep 17 00:00:00 2001 From: Thomas Mueller Date: Thu, 20 Jun 2013 10:47:37 +0200 Subject: [PATCH 14/36] adding unit test for folder remove: testRemovedFolder() --- tests/lib/files/cache/scanner.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php index 3ee7f099f3..e93c51441b 100644 --- a/tests/lib/files/cache/scanner.php +++ b/tests/lib/files/cache/scanner.php @@ -154,6 +154,17 @@ class Scanner extends \PHPUnit_Framework_TestCase { $this->assertFalse($this->cache->inCache('foo.txt')); } + public function testRemovedFolder() { + $this->fillTestFolders(); + + $this->scanner->scan(''); + $this->assertTrue($this->cache->inCache('folder/bar.txt')); + $this->storage->unlink('/folder'); + $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW); + $this->assertFalse($this->cache->inCache('folder')); + $this->assertFalse($this->cache->inCache('folder/bar.txt')); + } + function setUp() { $this->storage = new \OC\Files\Storage\Temporary(array()); $this->scanner = new \OC\Files\Cache\Scanner($this->storage); From 7a7b54c4a215e044e1d984968c0f92c73bec09b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Thu, 20 Jun 2013 11:41:07 +0200 Subject: [PATCH 15/36] skip teardown if cache has not been set up --- tests/lib/files/cache/scanner.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php index 3dacefa2b8..0e3aaa2d76 100644 --- a/tests/lib/files/cache/scanner.php +++ b/tests/lib/files/cache/scanner.php @@ -151,9 +151,11 @@ class Scanner extends \PHPUnit_Framework_TestCase { } function tearDown() { - $ids = $this->cache->getAll(); - $permissionsCache = $this->storage->getPermissionsCache(); - $permissionsCache->removeMultiple($ids, \OC_User::getUser()); - $this->cache->clear(); + if ($this->cache) { + $ids = $this->cache->getAll(); + $permissionsCache = $this->storage->getPermissionsCache(); + $permissionsCache->removeMultiple($ids, \OC_User::getUser()); + $this->cache->clear(); + } } } From 8c923a85dee0af07960c05902b187a0e7cbca34e Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 21 Jun 2013 08:53:57 +0200 Subject: [PATCH 16/36] [tx-robot] updated from transifex --- apps/files_encryption/l10n/fr.php | 6 ++++ apps/files_encryption/l10n/pt_BR.php | 14 ++++++++ apps/files_encryption/l10n/sk_SK.php | 22 ++++++++++++ apps/user_ldap/l10n/sk_SK.php | 3 ++ apps/user_webdavauth/l10n/pt_BR.php | 1 + apps/user_webdavauth/l10n/sk_SK.php | 1 + core/l10n/ca.php | 1 + core/l10n/de_DE.php | 4 +++ core/l10n/fi_FI.php | 4 +++ core/l10n/fr.php | 1 + core/l10n/gl.php | 1 + core/l10n/it.php | 1 + core/l10n/ja_JP.php | 1 + core/l10n/pt_BR.php | 5 +++ core/l10n/sk_SK.php | 5 +++ l10n/af_ZA/core.po | 4 +-- l10n/af_ZA/lib.po | 4 +-- l10n/af_ZA/settings.po | 6 ++-- l10n/ar/core.po | 4 +-- l10n/ar/lib.po | 4 +-- l10n/ar/settings.po | 6 ++-- l10n/bg_BG/core.po | 4 +-- l10n/bg_BG/lib.po | 4 +-- l10n/bg_BG/settings.po | 6 ++-- l10n/bn_BD/core.po | 4 +-- l10n/bn_BD/lib.po | 4 +-- l10n/bn_BD/settings.po | 6 ++-- l10n/ca/core.po | 8 ++--- l10n/ca/lib.po | 4 +-- l10n/ca/settings.po | 8 ++--- l10n/cs_CZ/core.po | 4 +-- l10n/cs_CZ/lib.po | 4 +-- l10n/cs_CZ/settings.po | 6 ++-- l10n/cy_GB/core.po | 4 +-- l10n/cy_GB/lib.po | 4 +-- l10n/cy_GB/settings.po | 6 ++-- l10n/da/core.po | 4 +-- l10n/da/lib.po | 4 +-- l10n/da/settings.po | 6 ++-- l10n/de/core.po | 4 +-- l10n/de/lib.po | 4 +-- l10n/de/settings.po | 11 +++--- l10n/de_DE/core.po | 15 +++++---- l10n/de_DE/lib.po | 4 +-- l10n/de_DE/settings.po | 11 +++--- l10n/el/core.po | 4 +-- l10n/el/lib.po | 4 +-- l10n/el/settings.po | 6 ++-- l10n/eo/core.po | 4 +-- l10n/eo/lib.po | 4 +-- l10n/eo/settings.po | 6 ++-- l10n/es/core.po | 4 +-- l10n/es/lib.po | 4 +-- l10n/es/settings.po | 6 ++-- l10n/es_AR/core.po | 4 +-- l10n/es_AR/lib.po | 4 +-- l10n/es_AR/settings.po | 6 ++-- l10n/et_EE/core.po | 4 +-- l10n/et_EE/lib.po | 4 +-- l10n/et_EE/settings.po | 6 ++-- l10n/eu/core.po | 4 +-- l10n/eu/lib.po | 4 +-- l10n/eu/settings.po | 6 ++-- l10n/fa/core.po | 4 +-- l10n/fa/lib.po | 4 +-- l10n/fa/settings.po | 6 ++-- l10n/fi_FI/core.po | 14 ++++---- l10n/fi_FI/lib.po | 4 +-- l10n/fi_FI/settings.po | 6 ++-- l10n/fr/core.po | 9 ++--- l10n/fr/files_encryption.po | 19 ++++++----- l10n/fr/lib.po | 4 +-- l10n/fr/settings.po | 6 ++-- l10n/gl/core.po | 8 ++--- l10n/gl/lib.po | 4 +-- l10n/gl/settings.po | 8 ++--- l10n/he/core.po | 4 +-- l10n/he/lib.po | 4 +-- l10n/he/settings.po | 6 ++-- l10n/hi/core.po | 4 +-- l10n/hi/lib.po | 4 +-- l10n/hi/settings.po | 6 ++-- l10n/hr/core.po | 4 +-- l10n/hr/lib.po | 4 +-- l10n/hr/settings.po | 6 ++-- l10n/hu_HU/core.po | 4 +-- l10n/hu_HU/lib.po | 4 +-- l10n/hu_HU/settings.po | 6 ++-- l10n/ia/core.po | 4 +-- l10n/ia/lib.po | 4 +-- l10n/ia/settings.po | 6 ++-- l10n/id/core.po | 4 +-- l10n/id/lib.po | 4 +-- l10n/id/settings.po | 6 ++-- l10n/is/core.po | 4 +-- l10n/is/lib.po | 4 +-- l10n/is/settings.po | 6 ++-- l10n/it/core.po | 8 ++--- l10n/it/lib.po | 4 +-- l10n/it/settings.po | 9 ++--- l10n/ja_JP/core.po | 8 ++--- l10n/ja_JP/lib.po | 4 +-- l10n/ja_JP/settings.po | 8 ++--- l10n/ka_GE/core.po | 4 +-- l10n/ka_GE/lib.po | 4 +-- l10n/ka_GE/settings.po | 6 ++-- l10n/ko/core.po | 4 +-- l10n/ko/lib.po | 4 +-- l10n/ko/settings.po | 6 ++-- l10n/ku_IQ/core.po | 4 +-- l10n/ku_IQ/lib.po | 4 +-- l10n/ku_IQ/settings.po | 6 ++-- l10n/lb/core.po | 4 +-- l10n/lb/lib.po | 4 +-- l10n/lb/settings.po | 6 ++-- l10n/lt_LT/core.po | 4 +-- l10n/lt_LT/lib.po | 4 +-- l10n/lt_LT/settings.po | 6 ++-- l10n/lv/core.po | 4 +-- l10n/lv/lib.po | 4 +-- l10n/lv/settings.po | 6 ++-- l10n/mk/core.po | 4 +-- l10n/mk/lib.po | 4 +-- l10n/mk/settings.po | 6 ++-- l10n/ms_MY/core.po | 4 +-- l10n/ms_MY/lib.po | 4 +-- l10n/ms_MY/settings.po | 6 ++-- l10n/my_MM/core.po | 4 +-- l10n/my_MM/settings.po | 6 ++-- l10n/nb_NO/core.po | 4 +-- l10n/nb_NO/lib.po | 4 +-- l10n/nb_NO/settings.po | 6 ++-- l10n/nl/core.po | 4 +-- l10n/nl/lib.po | 4 +-- l10n/nl/settings.po | 6 ++-- l10n/nn_NO/core.po | 4 +-- l10n/nn_NO/lib.po | 4 +-- l10n/nn_NO/settings.po | 6 ++-- l10n/oc/core.po | 4 +-- l10n/oc/lib.po | 4 +-- l10n/oc/settings.po | 6 ++-- l10n/pl/core.po | 4 +-- l10n/pl/lib.po | 4 +-- l10n/pl/settings.po | 6 ++-- l10n/pt_BR/core.po | 17 +++++----- l10n/pt_BR/files_encryption.po | 35 +++++++++---------- l10n/pt_BR/lib.po | 4 +-- l10n/pt_BR/settings.po | 8 ++--- l10n/pt_BR/user_webdavauth.po | 9 ++--- l10n/pt_PT/core.po | 4 +-- l10n/pt_PT/lib.po | 4 +-- l10n/pt_PT/settings.po | 6 ++-- l10n/ro/core.po | 4 +-- l10n/ro/lib.po | 4 +-- l10n/ro/settings.po | 6 ++-- l10n/ru/core.po | 4 +-- l10n/ru/lib.po | 4 +-- l10n/ru/settings.po | 6 ++-- l10n/si_LK/core.po | 4 +-- l10n/si_LK/lib.po | 4 +-- l10n/si_LK/settings.po | 6 ++-- l10n/sk_SK/core.po | 16 ++++----- l10n/sk_SK/files_encryption.po | 50 ++++++++++++++-------------- l10n/sk_SK/lib.po | 4 +-- l10n/sk_SK/settings.po | 10 +++--- l10n/sk_SK/user_ldap.po | 10 +++--- l10n/sk_SK/user_webdavauth.po | 8 ++--- l10n/sl/core.po | 4 +-- l10n/sl/lib.po | 4 +-- l10n/sl/settings.po | 6 ++-- l10n/sq/core.po | 4 +-- l10n/sq/lib.po | 4 +-- l10n/sq/settings.po | 6 ++-- l10n/sr/core.po | 4 +-- l10n/sr/lib.po | 4 +-- l10n/sr/settings.po | 6 ++-- l10n/sr@latin/core.po | 4 +-- l10n/sr@latin/lib.po | 4 +-- l10n/sr@latin/settings.po | 6 ++-- l10n/sv/core.po | 4 +-- l10n/sv/lib.po | 4 +-- l10n/sv/settings.po | 6 ++-- l10n/ta_LK/core.po | 4 +-- l10n/ta_LK/lib.po | 4 +-- l10n/ta_LK/settings.po | 6 ++-- l10n/te/core.po | 4 +-- l10n/te/lib.po | 4 +-- l10n/te/settings.po | 6 ++-- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 18 +++++----- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 2 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 4 +-- l10n/th_TH/lib.po | 4 +-- l10n/th_TH/settings.po | 6 ++-- l10n/tr/core.po | 4 +-- l10n/tr/lib.po | 4 +-- l10n/tr/settings.po | 6 ++-- l10n/ug/core.po | 4 +-- l10n/ug/lib.po | 4 +-- l10n/ug/settings.po | 6 ++-- l10n/uk/core.po | 4 +-- l10n/uk/lib.po | 4 +-- l10n/uk/settings.po | 6 ++-- l10n/ur_PK/core.po | 4 +-- l10n/ur_PK/lib.po | 4 +-- l10n/ur_PK/settings.po | 6 ++-- l10n/vi/core.po | 4 +-- l10n/vi/lib.po | 4 +-- l10n/vi/settings.po | 6 ++-- l10n/zh_CN.GB2312/core.po | 4 +-- l10n/zh_CN.GB2312/lib.po | 4 +-- l10n/zh_CN.GB2312/settings.po | 6 ++-- l10n/zh_CN/core.po | 4 +-- l10n/zh_CN/lib.po | 4 +-- l10n/zh_CN/settings.po | 6 ++-- l10n/zh_HK/core.po | 4 +-- l10n/zh_HK/lib.po | 4 +-- l10n/zh_HK/settings.po | 6 ++-- l10n/zh_TW/core.po | 4 +-- l10n/zh_TW/lib.po | 4 +-- l10n/zh_TW/settings.po | 6 ++-- settings/l10n/af_ZA.php | 3 +- settings/l10n/ar.php | 1 + settings/l10n/bg_BG.php | 1 + settings/l10n/bn_BD.php | 1 + settings/l10n/ca.php | 1 + settings/l10n/cs_CZ.php | 1 + settings/l10n/cy_GB.php | 3 +- settings/l10n/da.php | 1 + settings/l10n/de.php | 2 ++ settings/l10n/de_DE.php | 2 ++ settings/l10n/el.php | 1 + settings/l10n/eo.php | 1 + settings/l10n/es.php | 1 + settings/l10n/es_AR.php | 1 + settings/l10n/et_EE.php | 1 + settings/l10n/eu.php | 1 + settings/l10n/fa.php | 1 + settings/l10n/fi_FI.php | 1 + settings/l10n/fr.php | 1 + settings/l10n/gl.php | 1 + settings/l10n/he.php | 1 + settings/l10n/hi.php | 3 +- settings/l10n/hr.php | 3 +- settings/l10n/hu_HU.php | 1 + settings/l10n/ia.php | 3 +- settings/l10n/id.php | 1 + settings/l10n/is.php | 1 + settings/l10n/it.php | 1 + settings/l10n/ja_JP.php | 1 + settings/l10n/ka_GE.php | 1 + settings/l10n/ko.php | 1 + settings/l10n/ku_IQ.php | 3 +- settings/l10n/lb.php | 3 +- settings/l10n/lt_LT.php | 3 +- settings/l10n/lv.php | 1 + settings/l10n/mk.php | 3 +- settings/l10n/ms_MY.php | 3 +- settings/l10n/my_MM.php | 3 +- settings/l10n/nb_NO.php | 1 + settings/l10n/nl.php | 1 + settings/l10n/nn_NO.php | 1 + settings/l10n/oc.php | 3 +- settings/l10n/pl.php | 1 + settings/l10n/pt_BR.php | 1 + settings/l10n/pt_PT.php | 1 + settings/l10n/ro.php | 1 + settings/l10n/ru.php | 1 + settings/l10n/si_LK.php | 3 +- settings/l10n/sk_SK.php | 2 ++ settings/l10n/sl.php | 1 + settings/l10n/sq.php | 3 +- settings/l10n/sr.php | 1 + settings/l10n/sr@latin.php | 3 +- settings/l10n/sv.php | 1 + settings/l10n/ta_LK.php | 3 +- settings/l10n/te.php | 3 +- settings/l10n/th_TH.php | 1 + settings/l10n/tr.php | 1 + settings/l10n/ug.php | 1 + settings/l10n/uk.php | 1 + settings/l10n/ur_PK.php | 3 +- settings/l10n/vi.php | 1 + settings/l10n/zh_CN.GB2312.php | 1 + settings/l10n/zh_CN.php | 1 + settings/l10n/zh_HK.php | 3 +- settings/l10n/zh_TW.php | 1 + 295 files changed, 753 insertions(+), 605 deletions(-) diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 24bb81e8cf..147f0c2331 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -7,7 +7,9 @@ "Could not change the password. Maybe the old password was not correct." => "Ne peut pas changer le mot de passe. L'ancien mot de passe est peut-être incorrect.", "Private key password successfully updated." => "Mot de passe de la clé privé mis à jour avec succès.", "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur. Vous pouvez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers", "Saving..." => "Enregistrement...", +"Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.", "You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre", "personal settings" => "paramètres personnel", "Encryption" => "Chiffrement", @@ -19,10 +21,14 @@ "Old Recovery account password" => "Ancien compte de récupération de mots de passe", "New Recovery account password" => "Nouveau compte de récupération de mots de passe", "Change Password" => "Changer de mot de passe", +"Your private key password no longer match your log-in password:" => "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion :", +"Set your old private key password to your current log-in password." => "Configurez le mot de passe de votre ancienne clef privée avec votre mot de passe courant de connexion. ", +" If you don't remember your old password you can ask your administrator to recover your files." => "Si vous ne vous souvenez plus de votre ancien mot de passe, vous pouvez demander à votre administrateur de récupérer vos fichiers.", "Old log-in password" => "Ancien mot de passe de connexion", "Current log-in password" => "Actuel mot de passe de connexion", "Update Private Key Password" => "Mettre à jour le mot de passe de votre clé privée", "Enable password recovery:" => "Activer la récupération du mot de passe:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe", "File recovery settings updated" => "Mise à jour des paramètres de récupération de fichiers ", "Could not update file recovery" => "Ne peut pas remettre à jour les fichiers de récupération" ); diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 868dfc4453..c3a5b3e824 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -5,7 +5,13 @@ "Could not disable recovery key. Please check your recovery key password!" => "Impossível desabilitar recuperação de chave. Por favor verifique sua senha para recuperação de chave!", "Password successfully changed." => "Senha alterada com sucesso.", "Could not change the password. Maybe the old password was not correct." => "Não foi possível alterar a senha. Talvez a senha antiga não estava correta.", +"Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.", +"Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada. Você pode atualizar sua senha de chave privada nas suas configurações pessoais para obter novamente acesso aos seus arquivos.", "Saving..." => "Salvando...", +"Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", +"You can unlock your private key in your " => "Você pode desbloquear sua chave privada nas suas", +"personal settings" => "configurações pessoais.", "Encryption" => "Criptografia", "Enable encryption passwords recovery key (allow sharing to recovery key):" => "Ativar a criptografia de chave de recuperação de senhas (permitir compartilhar a chave de recuperação):", "Recovery account password" => "Recuperar a senha da conta", @@ -15,6 +21,14 @@ "Old Recovery account password" => "Recuperação de senha de conta antiga", "New Recovery account password" => "Senha Nova da conta de Recuperação", "Change Password" => "Trocar Senha", +"Your private key password no longer match your log-in password:" => "Sua senha de chave privada não coincide mais com sua senha de login:", +"Set your old private key password to your current log-in password." => "Configure sua antiga senha de chave privada para sua atual senha de login.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Se você não se lembra de sua antiga senha você pode pedir ao administrador que recupere seus arquivos.", +"Old log-in password" => "Senha antiga de login", +"Current log-in password" => "Atual senha de login", +"Update Private Key Password" => "Atualizar senha de chave privada", +"Enable password recovery:" => "Habilitar recuperação de senha:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitar essa opção vai permitir que você obtenha novamente acesso aos seus arquivos encriptados em caso de perda de senha", "File recovery settings updated" => "Configurações de recuperação de arquivo atualizado", "Could not update file recovery" => "Não foi possível atualizar a recuperação de arquivos" ); diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index 279481fbd4..05933c08d4 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -1,11 +1,33 @@ "Záchranný kľúč bol úspešne povolený", +"Could not enable recovery key. Please check your recovery key password!" => "Nepodarilo sa povoliť záchranný kľúč. Skontrolujte prosím Vaše heslo záchranného kľúča!", +"Recovery key successfully disabled" => "Záchranný kľúč bol úspešne zakázaný", +"Could not disable recovery key. Please check your recovery key password!" => "Nepodarilo sa zakázať záchranný kľúč. Skontrolujte prosím Vaše heslo záchranného kľúča!", "Password successfully changed." => "Heslo úspešne zmenené.", +"Could not change the password. Maybe the old password was not correct." => "Nemožno zmeniť heslo. Pravdepodobne nebolo staré heslo zadané správne.", +"Private key password successfully updated." => "Heslo súkromného kľúča je úspešne aktualizované.", +"Could not update the private key password. Maybe the old password was not correct." => "Nemožno aktualizovať heslo súkromného kľúča. Možno nebolo staré heslo správne.", +"Your private key is not valid! Maybe your password was changed from outside. You can update your private key password in your personal settings to regain access to your files" => "Váš súkromný kľúč je neplatný. Možno bolo Vaše heslo zmenené z vonku. Môžete aktualizovať heslo súkromného kľúča v osobnom nastavení na opätovné získanie prístupu k súborom", "Saving..." => "Ukladám...", +"Your private key is not valid! Maybe the your password was changed from outside." => "Váš súkromný kľúč je neplatný. Možno bolo Vaše heslo zmenené z vonku.", +"personal settings" => "osobné nastavenia", "Encryption" => "Šifrovanie", +"Enable encryption passwords recovery key (allow sharing to recovery key):" => "Povoliť záchranný kľúč šifrovacích hesiel (povolí zdieľaný záchranný kľúč):", +"Recovery account password" => "Heslo pre obnovu účtu", "Enabled" => "Povolené", "Disabled" => "Zakázané", "Change encryption passwords recovery key:" => "Zmeniť šifrovacie heslo obnovovacieho kľúča:", +"Old Recovery account password" => "Staré heslo pre obnovu účtu", +"New Recovery account password" => "Nové heslo pre obnovu účtu", "Change Password" => "Zmeniť heslo", +"Your private key password no longer match your log-in password:" => "Vaše heslo súkromného kľúča je rovnaké ako Vaše prihlasovacie heslo:", +"Set your old private key password to your current log-in password." => "Nastavte si staré heslo súkromného kľúča k Vášmu súčasnému prihlasovaciemu heslu.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Ak si nepamätáte svoje staré heslo, môžete požiadať správcu o obnovenie svojich súborov.", +"Old log-in password" => "Staré prihlasovacie heslo", +"Current log-in password" => "Súčasné prihlasovacie heslo", +"Update Private Key Password" => "Aktualizovať heslo súkromného kľúča", +"Enable password recovery:" => "Povoliť obnovu hesla:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Povolenie Vám umožní znovu získať prístup k Vašim zašifrovaným súborom, ak stratíte heslo", "File recovery settings updated" => "Nastavenie obnovy súborov aktualizované", "Could not update file recovery" => "Nemožno aktualizovať obnovenie súborov" ); diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php index e36a158936..fe1e14ea6f 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -79,6 +79,9 @@ "Internal Username Attribute:" => "Atribút interného používateľského mena:", "Override UUID detection" => "Prepísať UUID detekciu", "UUID Attribute:" => "UUID atribút:", +"Username-LDAP User Mapping" => "Mapovanie názvov LDAP používateľských mien", +"Clear Username-LDAP User Mapping" => "Zrušiť mapovanie LDAP používateľských mien", +"Clear Groupname-LDAP Group Mapping" => "Zrušiť mapovanie názvov LDAP skupín", "Test Configuration" => "Test nastavenia", "Help" => "Pomoc" ); diff --git a/apps/user_webdavauth/l10n/pt_BR.php b/apps/user_webdavauth/l10n/pt_BR.php index 1f96b75462..6727219db4 100644 --- a/apps/user_webdavauth/l10n/pt_BR.php +++ b/apps/user_webdavauth/l10n/pt_BR.php @@ -1,4 +1,5 @@ "Autenticação WebDAV", +"URL: " => "URL:", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "O ownCloud enviará as credenciais do usuário para esta URL. Este plugin verifica a resposta e interpreta o os códigos de status do HTTP 401 e 403 como credenciais inválidas, e todas as outras respostas como credenciais válidas." ); diff --git a/apps/user_webdavauth/l10n/sk_SK.php b/apps/user_webdavauth/l10n/sk_SK.php index 589a82dc6f..fa63b18569 100644 --- a/apps/user_webdavauth/l10n/sk_SK.php +++ b/apps/user_webdavauth/l10n/sk_SK.php @@ -1,4 +1,5 @@ "WebDAV overenie", +"URL: " => "URL: ", "ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud odošle používateľské údaje na zadanú URL. Plugin skontroluje odpoveď a považuje návratovú hodnotu HTTP 401 a 403 za neplatné údaje a všetky ostatné hodnoty ako platné prihlasovacie údaje." ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 7cc04571d9..e66571fc75 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -90,6 +90,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "La petició ha fallat!
    Esteu segur que el correu/nom d'usuari és correcte?", "You will receive a link to reset your password via Email." => "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya.", "Username" => "Nom d'usuari", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Els vostres fitxers estan encriptats. Si no heu habilitat la clau de recuperació no hi haurà manera de recuperar les dades després que reestabliu la contrasenya. Si sabeu què fer, contacteu amb l'administrador abans de continuar. Voleu continuar?", "Yes, I really want to reset my password now" => "Sí, vull restablir ara la contrasenya", "Request reset" => "Sol·licita reinicialització", "Your password was reset" => "La vostra contrasenya s'ha reinicialitzat", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 37a8f58e7e..e7842eb157 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -1,4 +1,5 @@ "%s geteilt »%s« mit Ihnen", "Category type not provided." => "Kategorie nicht angegeben.", "No category to add?" => "Keine Kategorie hinzuzufügen?", "This category already exists: %s" => "Die nachfolgende Kategorie existiert bereits: %s", @@ -89,6 +90,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
    Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", "You will receive a link to reset your password via Email." => "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen.", "Username" => "Benutzername", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keinen Weg geben, um Ihre Daten wieder zu bekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?", "Yes, I really want to reset my password now" => "Ja, ich möchte jetzt mein Passwort wirklich zurücksetzen.", "Request reset" => "Zurücksetzung anfordern", "Your password was reset" => "Ihr Passwort wurde zurückgesetzt.", @@ -102,6 +104,7 @@ "Help" => "Hilfe", "Access forbidden" => "Zugriff verboten", "Cloud not found" => "Cloud wurde nicht gefunden", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüße!", "web services under your control" => "Web-Services unter Ihrer Kontrolle", "Edit categories" => "Kategorien ändern", "Add" => "Hinzufügen", @@ -132,6 +135,7 @@ "remember" => "merken", "Log in" => "Einloggen", "Alternative Logins" => "Alternative Logins", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Hallo,

    ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.
    Schauen Sie es sich an!

    Viele Grüße!", "prev" => "Zurück", "next" => "Weiter", "Updating ownCloud to version %s, this may take a while." => "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 15349fb15a..3e471ad194 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -1,4 +1,5 @@ "%s jakoi kohteen »%s« kanssasi", "Category type not provided." => "Luokan tyyppiä ei määritelty.", "No category to add?" => "Ei lisättävää luokkaa?", "This category already exists: %s" => "Luokka on jo olemassa: %s", @@ -83,6 +84,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "Pyyntö epäonnistui!
    Olihan sähköpostiosoitteesi/käyttäjätunnuksesi oikein?", "You will receive a link to reset your password via Email." => "Saat sähköpostitse linkin nollataksesi salasanan.", "Username" => "Käyttäjätunnus", +"Yes, I really want to reset my password now" => "Kyllä, haluan nollata salasanani nyt", "Request reset" => "Tilaus lähetetty", "Your password was reset" => "Salasanasi nollattiin", "To login page" => "Kirjautumissivulle", @@ -95,6 +97,7 @@ "Help" => "Ohje", "Access forbidden" => "Pääsy estetty", "Cloud not found" => "Pilveä ei löydy", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hei!\n\n%s jakoi kohteen %s kanssasi.\nKatso se tästä: %s\n\nNäkemiin!", "web services under your control" => "verkkopalvelut hallinnassasi", "Edit categories" => "Muokkaa luokkia", "Add" => "Lisää", @@ -124,6 +127,7 @@ "remember" => "muista", "Log in" => "Kirjaudu sisään", "Alternative Logins" => "Vaihtoehtoiset kirjautumiset", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Hei!

    %s jakoi kohteen »%s« kanssasi.
    Katso se tästä!

    Näkemiin!", "prev" => "edellinen", "next" => "seuraava", "Updating ownCloud to version %s, this may take a while." => "Päivitetään ownCloud versioon %s, tämä saattaa kestää hetken." diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 4e6c56c8bc..2d1181bfec 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -90,6 +90,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "Requête en échec!
    Avez-vous vérifié vos courriel/nom d'utilisateur?", "You will receive a link to reset your password via Email." => "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe.", "Username" => "Nom d'utilisateur", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Vos fichiers sont chiffrés. Si vous n'avez pas activé la clef de récupération, il n'y aura plus aucun moyen de récupérer vos données une fois le mot de passe réinitialisé. Si vous n'êtes pas sûr de ce que vous faites, veuillez contacter votre administrateur avant de continuer. Voulez-vous vraiment continuer ?", "Yes, I really want to reset my password now" => "Oui, je veux vraiment réinitialiser mon mot de passe maintenant", "Request reset" => "Demander la réinitialisation", "Your password was reset" => "Votre mot de passe a été réinitialisé", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index e32af18e34..db53a3e8a4 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -90,6 +90,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "Non foi posíbel facer a petición!
    Asegúrese de que o seu enderezo de correo ou nome de usuario é correcto.", "You will receive a link to reset your password via Email." => "Recibirá unha ligazón por correo para restabelecer o contrasinal", "Username" => "Nome de usuario", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Os ficheiros están cifrados. Se aínda non activou a chave de recuperación non haberá xeito de recuperar os datos unha vez que se teña restabelecido o contrasinal. Se non ten certeza do que ten que facer, póñase en contacto co administrador antes de continuar. Confirma que quere continuar?", "Yes, I really want to reset my password now" => "Si, confirmo que quero restabelecer agora o meu contrasinal", "Request reset" => "Petición de restabelecemento", "Your password was reset" => "O contrasinal foi restabelecido", diff --git a/core/l10n/it.php b/core/l10n/it.php index dc269b5f4b..f14e4fbb31 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -90,6 +90,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "Richiesta non riuscita!
    Sei sicuro che l'indirizzo di posta/nome utente fosse corretto?", "You will receive a link to reset your password via Email." => "Riceverai un collegamento per ripristinare la tua password via email", "Username" => "Nome utente", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "I file sono cifrati. Se non hai precedentemente abilitato la chiave di recupero, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà ripristinata. Se non sei sicuro, per favore contatta l'amministratore prima di proseguire. Vuoi davvero continuare?", "Yes, I really want to reset my password now" => "Sì, voglio davvero ripristinare la mia password adesso", "Request reset" => "Richiesta di ripristino", "Your password was reset" => "La password è stata ripristinata", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 29dca3b105..b1c8b9a438 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -90,6 +90,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "リクエストに失敗しました!
    あなたのメール/ユーザ名が正しいことを確認しましたか?", "You will receive a link to reset your password via Email." => "メールでパスワードをリセットするリンクが届きます。", "Username" => "ユーザー名", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "ファイルが暗号化されています。復旧キーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかよくわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?", "Yes, I really want to reset my password now" => "はい、今すぐパスワードをリセットします。", "Request reset" => "リセットを要求します。", "Your password was reset" => "あなたのパスワードはリセットされました。", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 028f5f3e56..f57c0a2929 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -1,4 +1,5 @@ "%s compartilhou »%s« com você", "Category type not provided." => "Tipo de categoria não fornecido.", "No category to add?" => "Nenhuma categoria a adicionar?", "This category already exists: %s" => "Esta categoria já existe: %s", @@ -89,6 +90,8 @@ "Request failed!
    Did you make sure your email/username was right?" => "O pedido falhou!
    Certifique-se que seu e-mail/username estavam corretos?", "You will receive a link to reset your password via Email." => "Você receberá um link para redefinir sua senha por e-mail.", "Username" => "Nome de usuário", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Seus arquivos estão encriptados. Se você não habilitou a chave de recuperação, não haverá maneira de recuperar seus dados após criar uma nova senha. Se você não tem certeza do que fazer, por favor entre em contato com o administrador antes de continuar. Tem certeza que realmente quer continuar?", +"Yes, I really want to reset my password now" => "Sim, realmente quero criar uma nova senha.", "Request reset" => "Pedir redefinição", "Your password was reset" => "Sua senha foi redefinida", "To login page" => "Para a página de login", @@ -101,6 +104,7 @@ "Help" => "Ajuda", "Access forbidden" => "Acesso proibido", "Cloud not found" => "Cloud não encontrado", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Olá,\n\napenas para você saber que %s compartilhou %s com você.\nVeja: %s\n\nAbraços!", "web services under your control" => "serviços web sob seu controle", "Edit categories" => "Editar categorias", "Add" => "Adicionar", @@ -131,6 +135,7 @@ "remember" => "lembrar", "Log in" => "Fazer login", "Alternative Logins" => "Logins alternativos", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Olá,

    apenas para você saber que %s compartilhou %s com você.
    Veja:

    Abraços!", "prev" => "anterior", "next" => "próximo", "Updating ownCloud to version %s, this may take a while." => "Atualizando ownCloud para a versão %s, isto pode levar algum tempo." diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 29febc283b..ead3842e45 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -1,4 +1,5 @@ "%s s Vami zdieľa »%s«", "Category type not provided." => "Neposkytnutý typ kategórie.", "No category to add?" => "Žiadna kategória pre pridanie?", "This category already exists: %s" => "Kategória: %s už existuje.", @@ -42,6 +43,7 @@ "years ago" => "pred rokmi", "Choose" => "Výber", "Cancel" => "Zrušiť", +"Error loading file picker template" => "Chyba pri načítaní šablóny výberu súborov", "Yes" => "Áno", "No" => "Nie", "Ok" => "Ok", @@ -88,6 +90,7 @@ "Request failed!
    Did you make sure your email/username was right?" => "Požiadavka zlyhala.
    Uistili ste sa, že Vaše používateľské meno a email sú správne?", "You will receive a link to reset your password via Email." => "Odkaz pre obnovenie hesla obdržíte e-mailom.", "Username" => "Meno používateľa", +"Yes, I really want to reset my password now" => "Áno, želám si teraz obnoviť svoje heslo", "Request reset" => "Požiadať o obnovenie", "Your password was reset" => "Vaše heslo bolo obnovené", "To login page" => "Na prihlasovaciu stránku", @@ -100,6 +103,7 @@ "Help" => "Pomoc", "Access forbidden" => "Prístup odmietnutý", "Cloud not found" => "Nenájdené", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Ahoj,\n\nChcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: %s\n\nVďaka", "web services under your control" => "webové služby pod Vašou kontrolou", "Edit categories" => "Upraviť kategórie", "Add" => "Pridať", @@ -130,6 +134,7 @@ "remember" => "zapamätať", "Log in" => "Prihlásiť sa", "Alternative Logins" => "Alternatívne prihlasovanie", +"Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" => "Ahoj,

    chcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu:
    zde.

    Vďaka", "prev" => "späť", "next" => "ďalej", "Updating ownCloud to version %s, this may take a while." => "Aktualizujem ownCloud na verziu %s, môže to chvíľu trvať." diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index fad0a898e7..05f7cb29c3 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 1863bcc365..a602d8b32c 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 00:14+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index 89868f17d5..28347d8c7f 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Gebruikersnaam" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 70a11de5e5..e0d1b23407 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index d85361731e..311a0c69d8 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index fa49d0e96c..05ae6d50f9 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "شيء آخر" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "إسم المستخدم" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 676391c875..456150f20b 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index a76f2e233e..0e9f430fe3 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: Димитър Кръстев \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index ea642ac045..bd168462c4 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Други" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Потребител" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index d9b6e50260..60828f3375 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 687a1c5c8e..a8de2848c9 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 609167e7b2..1689e0b015 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "অন্যান্য" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "ব্যবহারকারী" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index e52f73aadb..45dd027796 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -409,7 +409,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Els vostres fitxers estan encriptats. Si no heu habilitat la clau de recuperació no hi haurà manera de recuperar les dades després que reestabliu la contrasenya. Si sabeu què fer, contacteu amb l'administrador abans de continuar. Voleu continuar?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 2cef38f2d2..4beef7dc1d 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 8eb8d78755..66fbb2a36e 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" +"Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -489,7 +489,7 @@ msgstr "Un altre" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nom d'usuari" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 45df3e8f05..7e90fb0692 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index ca72ae2dcd..b27632edc3 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: Tomáš Chvátal \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index eca1544d11..a4bac71b6a 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "Jiný" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Uživatelské jméno" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 6ced824723..faf9fe0b7b 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 13e3c3ad1b..81f188b875 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: ubuntucymraeg \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index f11015762c..3b6b340e12 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Arall" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Enw defnyddiwr" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/da/core.po b/l10n/da/core.po index 8fa71f3600..f19f3dbfc0 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index dd35a87895..408c70cdaa 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: Ole Holm Frandsen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 3017f656be..3d4362d331 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "Andet" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Brugernavn" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/de/core.po b/l10n/de/core.po index 4519c6fcb0..21f897ca17 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index ac036172eb..965c3a0b30 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: ninov \n" "Language-Team: German \n" "MIME-Version: 1.0\n" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 0f8ffcd35f..4fee68746d 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -4,15 +4,16 @@ # # Translators: # arkascha , 2013 +# Mario Siegmann , 2013 # ninov , 2013 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 11:10+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -474,7 +475,7 @@ msgstr "Admin-Wiederherstellungspasswort" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen" #: templates/users.php:42 msgid "Default Storage" @@ -490,7 +491,7 @@ msgstr "Andere" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Benutzername" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 895758c9d5..3c0277b415 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -5,15 +5,16 @@ # Translators: # arkascha , 2013 # Marcel Kühlhorn , 2013 +# Mario Siegmann , 2013 # traductor , 2013 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 11:30+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s geteilt »%s« mit Ihnen" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -411,7 +412,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keinen Weg geben, um Ihre Daten wieder zu bekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" @@ -474,7 +475,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüße!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -616,7 +617,7 @@ msgstr "Alternative Logins" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Hallo,

    ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.
    Schauen Sie es sich an!

    Viele Grüße!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 6875e4e1ea..d8815bddf7 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: traductor \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 3fe72fecaa..3debecddcf 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -5,15 +5,16 @@ # Translators: # a.tangemann , 2013 # arkascha , 2013 +# Mario Siegmann , 2013 # traductor , 2013 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 11:20+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -475,7 +476,7 @@ msgstr "Admin-Paswort-Wiederherstellung" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen" #: templates/users.php:42 msgid "Default Storage" @@ -491,7 +492,7 @@ msgstr "Andere" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Benutzername" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/el/core.po b/l10n/el/core.po index 5434c3bbe1..5ad6f5be29 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index d8ecdf0d14..825fdfaa75 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 01fb826efa..ba2618619a 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -489,7 +489,7 @@ msgstr "Άλλο" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Όνομα χρήστη" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 65eea1f8c8..632de65899 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 7ea6a719c7..8e245ea4d7 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 76e39dee16..a8b361cf71 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Alia" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Uzantonomo" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/es/core.po b/l10n/es/core.po index 1c6bb3b894..223c39d2ef 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index d410d1d59b..da0315d9d9 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" "Last-Translator: xhiena \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index a0c5e94e56..d62ac9b6c6 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -491,7 +491,7 @@ msgstr "Otro" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nombre de usuario" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index f2a262c8a7..bd71fa1aef 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 818a2250d7..7c072ebd53 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: cjtess \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index c3c016357e..b3a6c8005f 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -489,7 +489,7 @@ msgstr "Otros" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nombre de usuario" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index be86c55a86..337d927ab1 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index a6bde9d70c..fcf200c215 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: pisike.sipelgas \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 8b5f8186e5..0f3045de03 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -489,7 +489,7 @@ msgstr "Muu" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Kasutajanimi" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 1cddc86a73..f1e029d7b4 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index b4efaef29f..ba82868c6f 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 780a36e174..8f54f5d800 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Bestelakoa" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Erabiltzaile izena" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 1321c169eb..c241cf7560 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index b985a09770..fcda96408e 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index e3200bcd20..8cba69b054 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "دیگر" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "نام کاربری" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 54728a2cc1..87d3bcf72c 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s jakoi kohteen »%s« kanssasi" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -412,7 +412,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Kyllä, haluan nollata salasanani nyt" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -471,7 +471,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Hei!\n\n%s jakoi kohteen %s kanssasi.\nKatso se tästä: %s\n\nNäkemiin!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +613,7 @@ msgstr "Vaihtoehtoiset kirjautumiset" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Hei!

    %s jakoi kohteen »%s« kanssasi.
    Katso se tästä!

    Näkemiin!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index a493df3019..12654b3f4b 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 57856c22bb..a7168246f0 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "Muu" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Käyttäjätunnus" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index c545267b0b..a7d9d451cd 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -4,6 +4,7 @@ # # Translators: # Adalberto Rodrigues , 2013 +# Christophe Lherieau , 2013 # msoko , 2013 # plachance , 2013 # red0ne , 2013 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 16:40+0000\n" +"Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -411,7 +412,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Vos fichiers sont chiffrés. Si vous n'avez pas activé la clef de récupération, il n'y aura plus aucun moyen de récupérer vos données une fois le mot de passe réinitialisé. Si vous n'êtes pas sûr de ce que vous faites, veuillez contacter votre administrateur avant de continuer. Voulez-vous vraiment continuer ?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index cd41efece6..7d782eedbc 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -4,15 +4,16 @@ # # Translators: # Adalberto Rodrigues , 2013 +# Christophe Lherieau , 2013 # froozeify , 2013 # lyly95, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-17 02:02+0200\n" -"PO-Revision-Date: 2013-06-16 18:50+0000\n" -"Last-Translator: Adalberto Rodrigues \n" +"POT-Creation-Date: 2013-06-21 08:48+0200\n" +"PO-Revision-Date: 2013-06-20 16:40+0000\n" +"Last-Translator: Christophe Lherieau \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -61,7 +62,7 @@ msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur. Vous pouvez mettre à jour le mot de passe de votre clef privée dans vos paramètres personnels pour récupérer l'accès à vos fichiers" #: js/settings-admin.js:11 msgid "Saving..." @@ -71,7 +72,7 @@ msgstr "Enregistrement..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " @@ -120,17 +121,17 @@ msgstr "Changer de mot de passe" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Le mot de passe de votre clef privée ne correspond plus à votre mot de passe de connexion :" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Configurez le mot de passe de votre ancienne clef privée avec votre mot de passe courant de connexion. " #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Si vous ne vous souvenez plus de votre ancien mot de passe, vous pouvez demander à votre administrateur de récupérer vos fichiers." #: templates/settings-personal.php:24 msgid "Old log-in password" @@ -152,7 +153,7 @@ msgstr "Activer la récupération du mot de passe:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Activer cette option vous permettra d'obtenir à nouveau l'accès à vos fichiers chiffrés en cas de perte de mot de passe" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 9c4a7473c1..5297cf06d8 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: Cyril Glapa \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index b45883ea2f..73db06b4bb 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -490,7 +490,7 @@ msgstr "Autre" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nom d'utilisateur" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index ca3a672db5..c571d4bdf5 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -408,7 +408,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Os ficheiros están cifrados. Se aínda non activou a chave de recuperación non haberá xeito de recuperar os datos unha vez que se teña restabelecido o contrasinal. Se non ten certeza do que ten que facer, póñase en contacto co administrador antes de continuar. Confirma que quere continuar?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 00c0c83705..4cf8bf5370 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 6029cf4975..9b9d03069b 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" +"Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -488,7 +488,7 @@ msgstr "Outro" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nome de usuario" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/he/core.po b/l10n/he/core.po index 6be3427fab..58d7aaa72d 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index e3a200c454..8efaa8cf2c 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index fe4e6de99f..710b84f443 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "אחר" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "שם משתמש" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index bd05e94cfe..9e92b52cdc 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index ab3955b78d..36f6d776a8 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 00:13+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index ac7c551721..1efacb75a9 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "प्रयोक्ता का नाम" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 389d4547dd..17c0e5c86d 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 03d5c52b0f..48e81a9f5a 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 96f86bb51b..9be8b2f073 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "ostali" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Korisničko ime" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index cfde1b630e..ac64d4b5cb 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index b0bcbe6eff..b2ac439648 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 0cdbabaa11..70467ef51b 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -489,7 +489,7 @@ msgstr "Más" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Felhasználónév" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 6945814fd2..604c60aa28 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 0c3797b6b8..4a03758c80 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index ba6524b044..7059cabec9 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Altere" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nomine de usator" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/id/core.po b/l10n/id/core.po index eefda9b64a..9e62fa39b7 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index beb71c3676..758c1cbcd6 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 6796b003a0..eccac13e09 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Lainnya" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nama pengguna" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/is/core.po b/l10n/is/core.po index 8617c036e4..87bfcbc861 100644 --- a/l10n/is/core.po +++ b/l10n/is/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index c66520b9be..8a2e6193de 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index e799032597..d12d85b98a 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "Annað" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Notendanafn" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/it/core.po b/l10n/it/core.po index eed00611a5..ffad174878 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 12:00+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -409,7 +409,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "I file sono cifrati. Se non hai precedentemente abilitato la chiave di recupero, non sarà più possibile ritrovare i tuoi dati una volta che la password sarà ripristinata. Se non sei sicuro, per favore contatta l'amministratore prima di proseguire. Vuoi davvero continuare?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 9fff38cff1..2f1e649309 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" "Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index cc905ef45c..4093536222 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Francesco Apruzzese , 2013 # Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 11:50+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -488,7 +489,7 @@ msgstr "Altro" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nome utente" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index efa06e028a..aa9aa06827 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" +"Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -409,7 +409,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "ファイルが暗号化されています。復旧キーを有効にしていなかった場合、パスワードをリセットしてからデータを復旧する方法はありません。何をすべきかよくわからないなら、続ける前にまず管理者に連絡しましょう。本当に続けますか?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 57d9492a15..2e99042caf 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" "Last-Translator: tt yn \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 737cf4a3a0..e662cc790b 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" +"Last-Translator: plazmism \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -490,7 +490,7 @@ msgstr "その他" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "ユーザー名" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index be74a78c29..89272d18ad 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index e50ad5cd58..9d4f476043 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 5c4122bdcd..72e360a6bd 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "სხვა" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "მომხმარებლის სახელი" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 63a02389ae..576e449c9e 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index aea79c0c2d..f6bfecfdcc 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-19 08:50+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index c595446f19..ad65bbff09 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "기타" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "사용자 이름" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 78e87007d7..09bdc10603 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 8700026723..44839b2f13 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 00:14+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 92b2081728..357b062fe4 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "ناوی به‌کارهێنه‌ر" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 86ae1a30f2..90d48d0f5a 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 57c7170f45..9855d54d72 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 94b23d8113..ca1c4b5462 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Aner" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Benotzernumm" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 1d7345a544..4b452b97fc 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 17e417b128..d002db2445 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: fizikiukas \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 50a0c6b889..333faf5be1 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Kita" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Prisijungimo vardas" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index aeecdbcc0b..69cdff649b 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 2b31d77e2b..e7f87ab07e 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 808050d5e9..6cf861731b 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Cits" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Lietotājvārds" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index ceab38ec52..9853be565f 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 88f504ec8d..62cdcab23f 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 6aab64dd58..29fdc3b4dd 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Останато" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Корисничко име" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index b9bfecf040..ba75e5c6a4 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 6fb1d26b7c..3d4c3d927a 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index dc8796f58d..a93ff28c35 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Lain" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nama pengguna" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 3fda0f7232..548721410a 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index c58c75e327..78426d83e3 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "သုံးစွဲသူအမည်" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 3b20831884..8fe3decda5 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 1f6206fdbf..60e6146da2 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index ab670d6863..d4ef592db0 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "Annet" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Brukernavn" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 3b5fc2bedb..7aacaf1706 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index bfbd39f38c..ac1ec3d655 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: André Koot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index bbc411248e..f1884090cd 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -489,7 +489,7 @@ msgstr "Anders" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Gebruikersnaam" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index f45f12d586..c5694187b5 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 731025e333..7dc16a9523 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: unhammer \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 6691b5fdd1..12742a6c55 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -489,7 +489,7 @@ msgstr "Anna" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Brukarnamn" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index e6829f4ada..832f5793d0 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 6310138439..68faba3057 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 00:13+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 5602d0f554..5503894dfc 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Autres" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Non d'usancièr" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 333068ba18..397ae71a78 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 96d8b67950..f3875078a7 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 2dda16be6f..715591134b 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -489,7 +489,7 @@ msgstr "Inne" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nazwa użytkownika" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 0729dfebac..8aa6d099b0 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# bjamalaro , 2013 # Flávio Veras , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 21:40+0000\n" +"Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +22,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s compartilhou »%s« com você" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -408,11 +409,11 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Seus arquivos estão encriptados. Se você não habilitou a chave de recuperação, não haverá maneira de recuperar seus dados após criar uma nova senha. Se você não tem certeza do que fazer, por favor entre em contato com o administrador antes de continuar. Tem certeza que realmente quer continuar?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Sim, realmente quero criar uma nova senha." #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -471,7 +472,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Olá,\n\napenas para você saber que %s compartilhou %s com você.\nVeja: %s\n\nAbraços!" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +614,7 @@ msgstr "Logins alternativos" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Olá,

    apenas para você saber que %s compartilhou %s com você.
    Veja:

    Abraços!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 1a19c42767..87ba67c635 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# bjamalaro , 2013 # Flávio Veras , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:48+0200\n" +"PO-Revision-Date: 2013-06-20 21:50+0000\n" +"Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,20 +47,20 @@ msgstr "Não foi possível alterar a senha. Talvez a senha antiga não estava co #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Senha de chave privada atualizada com sucesso." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta." #: files/error.php:7 msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "Sua chave privada não é válida! Talvez sua senha tenha sido mudada. Você pode atualizar sua senha de chave privada nas suas configurações pessoais para obter novamente acesso aos seus arquivos." #: js/settings-admin.js:11 msgid "Saving..." @@ -69,15 +70,15 @@ msgstr "Salvando..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Sua chave privada não é válida! Talvez sua senha tenha sido mudada." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Você pode desbloquear sua chave privada nas suas" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "configurações pessoais." #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -118,39 +119,39 @@ msgstr "Trocar Senha" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Sua senha de chave privada não coincide mais com sua senha de login:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Configure sua antiga senha de chave privada para sua atual senha de login." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Se você não se lembra de sua antiga senha você pode pedir ao administrador que recupere seus arquivos." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Senha antiga de login" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Atual senha de login" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Atualizar senha de chave privada" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Habilitar recuperação de senha:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Habilitar essa opção vai permitir que você obtenha novamente acesso aos seus arquivos encriptados em caso de perda de senha" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 2a401807b6..f893af499b 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index e01a1efcbb..3a5e550f45 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 10:02+0000\n" +"Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -489,7 +489,7 @@ msgstr "Outro" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nome de Usuário" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/pt_BR/user_webdavauth.po b/l10n/pt_BR/user_webdavauth.po index 0b37738524..c62680557c 100644 --- a/l10n/pt_BR/user_webdavauth.po +++ b/l10n/pt_BR/user_webdavauth.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# bjamalaro , 2013 # Rodrigo Tavares , 2013 # thoriumbr , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 21:50+0000\n" +"Last-Translator: bjamalaro \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +26,7 @@ msgstr "Autenticação WebDAV" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL:" #: templates/settings.php:7 msgid "" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 08bc7e98b0..bcc1d86a8d 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index f6168e8a75..809d121492 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: Helder Meneses \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 42457e18d1..767fe881d8 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -490,7 +490,7 @@ msgstr "Outro" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nome de utilizador" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index a673e3d4bc..938ede0f24 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index a1ada69848..25a5e3fd9f 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index dec69e6df5..ce71574139 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Altele" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Nume utilizator" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index eb2e189c3c..59d76bfc9f 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 729811d776..4f50e25914 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: Friktor \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 1c1eba999b..783618bf9f 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -490,7 +490,7 @@ msgstr "Другое" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Имя пользователя" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 76b5e7133d..cd424590a6 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 828721cf1a..1506b10c18 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index e560b8119e..86569bef5b 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "වෙනත්" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "පරිශීලක නම" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 3776146df0..eb79931668 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 16:50+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,7 +21,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s s Vami zdieľa »%s«" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -204,7 +204,7 @@ msgstr "Zrušiť" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Chyba pri načítaní šablóny výberu súborov" #: js/oc-dialogs.js:164 msgid "Yes" @@ -412,7 +412,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Áno, želám si teraz obnoviť svoje heslo" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -471,7 +471,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Ahoj,\n\nChcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu: %s\n\nVďaka" #: templates/altmail.php:7 templates/mail.php:24 msgid "web services under your control" @@ -613,7 +613,7 @@ msgstr "Alternatívne prihlasovanie" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Ahoj,

    chcem Vám oznámiť, že %s s Vami zdieľa %s.\nPozrieť si to môžete tu:
    zde.

    Vďaka" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 05d92a7c7e..dfdbd6c3d7 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-14 02:46+0200\n" -"PO-Revision-Date: 2013-06-14 00:47+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:48+0200\n" +"PO-Revision-Date: 2013-06-20 17:20+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,21 +20,21 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Záchranný kľúč bol úspešne povolený" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Nepodarilo sa povoliť záchranný kľúč. Skontrolujte prosím Vaše heslo záchranného kľúča!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Záchranný kľúč bol úspešne zakázaný" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Nepodarilo sa zakázať záchranný kľúč. Skontrolujte prosím Vaše heslo záchranného kľúča!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -42,24 +42,24 @@ msgstr "Heslo úspešne zmenené." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Nemožno zmeniť heslo. Pravdepodobne nebolo staré heslo zadané správne." #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Heslo súkromného kľúča je úspešne aktualizované." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Nemožno aktualizovať heslo súkromného kľúča. Možno nebolo staré heslo správne." #: files/error.php:7 msgid "" "Your private key is not valid! Maybe your password was changed from outside." " You can update your private key password in your personal settings to " "regain access to your files" -msgstr "" +msgstr "Váš súkromný kľúč je neplatný. Možno bolo Vaše heslo zmenené z vonku. Môžete aktualizovať heslo súkromného kľúča v osobnom nastavení na opätovné získanie prístupu k súborom" #: js/settings-admin.js:11 msgid "Saving..." @@ -69,7 +69,7 @@ msgstr "Ukladám..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Váš súkromný kľúč je neplatný. Možno bolo Vaše heslo zmenené z vonku." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " @@ -77,7 +77,7 @@ msgstr "" #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "osobné nastavenia" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -86,11 +86,11 @@ msgstr "Šifrovanie" #: templates/settings-admin.php:10 msgid "" "Enable encryption passwords recovery key (allow sharing to recovery key):" -msgstr "" +msgstr "Povoliť záchranný kľúč šifrovacích hesiel (povolí zdieľaný záchranný kľúč):" #: templates/settings-admin.php:14 msgid "Recovery account password" -msgstr "" +msgstr "Heslo pre obnovu účtu" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -106,11 +106,11 @@ msgstr "Zmeniť šifrovacie heslo obnovovacieho kľúča:" #: templates/settings-admin.php:41 msgid "Old Recovery account password" -msgstr "" +msgstr "Staré heslo pre obnovu účtu" #: templates/settings-admin.php:48 msgid "New Recovery account password" -msgstr "" +msgstr "Nové heslo pre obnovu účtu" #: templates/settings-admin.php:53 msgid "Change Password" @@ -118,39 +118,39 @@ msgstr "Zmeniť heslo" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Vaše heslo súkromného kľúča je rovnaké ako Vaše prihlasovacie heslo:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Nastavte si staré heslo súkromného kľúča k Vášmu súčasnému prihlasovaciemu heslu." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Ak si nepamätáte svoje staré heslo, môžete požiadať správcu o obnovenie svojich súborov." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Staré prihlasovacie heslo" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Súčasné prihlasovacie heslo" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Aktualizovať heslo súkromného kľúča" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Povoliť obnovu hesla:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Povolenie Vám umožní znovu získať prístup k Vašim zašifrovaným súborom, ak stratíte heslo" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 75187ce7e5..c01c496d17 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index e0c8adf6b9..0bbe2dfbd0 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 16:40+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -472,7 +472,7 @@ msgstr "Obnovenie hesla administrátora" msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Zadajte heslo pre obnovenie súborov používateľa pri zmene hesla" #: templates/users.php:42 msgid "Default Storage" @@ -488,7 +488,7 @@ msgstr "Iné" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Meno používateľa" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 9f4af4a543..24a68d3aa7 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:29+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 16:40+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -386,7 +386,7 @@ msgstr "UUID atribút:" #: templates/settings.php:107 msgid "Username-LDAP User Mapping" -msgstr "" +msgstr "Mapovanie názvov LDAP používateľských mien" #: templates/settings.php:108 msgid "" @@ -405,11 +405,11 @@ msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" -msgstr "" +msgstr "Zrušiť mapovanie LDAP používateľských mien" #: templates/settings.php:109 msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" +msgstr "Zrušiť mapovanie názvov LDAP skupín" #: templates/settings.php:111 msgid "Test Configuration" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index 584941b201..ae90bb92d4 100644 --- a/l10n/sk_SK/user_webdavauth.po +++ b/l10n/sk_SK/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 17:30+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +25,7 @@ msgstr "WebDAV overenie" #: templates/settings.php:4 msgid "URL: " -msgstr "" +msgstr "URL: " #: templates/settings.php:7 msgid "" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 80d4aa09b9..4854af6ba5 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index ebae3210a5..a8367203fd 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 9b8ef4081e..a86bb98254 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "Drugo" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Uporabniško ime" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 47885c4782..2d3493a665 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 8505ea8ede..b92172f18c 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index b05821f97a..fd18d8c62a 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Përdoruesi" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 635d71bf73..4b468b68c2 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index e8bb02dcc5..5b123e5b98 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 29b1234e5b..cee043fd03 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Друго" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Корисничко име" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index d3e5c203bb..fc461f8d6e 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 5a8270d20f..40ecbc7e71 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index c9838e97ba..ebef1864ce 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Drugo" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Korisničko ime" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index e6677c3576..ac28a91ea9 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 1cf77f3aed..3fcb899413 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: medialabs\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 3ac80cfeca..1bef05b4c6 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -491,7 +491,7 @@ msgstr "Annat" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Användarnamn" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index b8d1e342b3..c0e805f7fa 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index e25aaae209..fd4b750fed 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index 7400ddf0f1..95b1cdd5bc 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "மற்றவை" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "பயனாளர் பெயர்" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/te/core.po b/l10n/te/core.po index 1f75cf864a..f6a1600be9 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index c1e3a598c3..15a265a87f 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 00:14+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index f53dd580f8..47c3cc7219 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "వాడుకరి పేరు" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 7da1f84a5b..f81f65d2fa 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 610eb6a0e9..6a9563435f 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"POT-Creation-Date: 2013-06-21 08:48+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -183,35 +183,35 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 +#: js/files.js:520 js/files.js:536 js/files.js:840 js/files.js:878 msgid "Error" msgstr "" -#: js/files.js:877 templates/index.php:69 +#: js/files.js:891 templates/index.php:69 msgid "Name" msgstr "" -#: js/files.js:878 templates/index.php:80 +#: js/files.js:892 templates/index.php:80 msgid "Size" msgstr "" -#: js/files.js:879 templates/index.php:82 +#: js/files.js:893 templates/index.php:82 msgid "Modified" msgstr "" -#: js/files.js:898 +#: js/files.js:912 msgid "1 folder" msgstr "" -#: js/files.js:900 +#: js/files.js:914 msgid "{count} folders" msgstr "" -#: js/files.js:908 +#: js/files.js:922 msgid "1 file" msgstr "" -#: js/files.js:910 +#: js/files.js:924 msgid "{count} files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index b8b591f065..1894400a77 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"POT-Creation-Date: 2013-06-21 08:48+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index f32754dfba..6e66180387 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-20 02:36+0200\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index bc5d327dd4..03096cfb11 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index f3a39fcc23..13a782aad2 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 04bda81c99..6eef27d97d 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 75a15683dc..6e940b5c7c 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 953d83a011..96f5e5db37 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 296e4ea53f..f88e843e41 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index e94801398c..99961fd0a9 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index fb6f5828b1..c0dfde2952 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index d547fe96ce..f0cb6744a4 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 27f3b5cd53..16994fd767 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "อื่นๆ" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "ชื่อผู้ใช้งาน" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index ad33125d5a..ebcc0cdade 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 8fd8b94f26..29e5b7dd02 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: ismail yenigül \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index bbd5324ff7..5c22ab2478 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "Diğer" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Kullanıcı Adı" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 00cc27368f..d31413e32d 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 9aaee0fbfc..a961bc8098 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: Abduqadir Abliz \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index f126a94030..316cb695e4 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "باشقا" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "ئىشلەتكۈچى ئاتى" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 7f91d00254..79902344be 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index db2b45bb28..7b753e6c77 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index bb92f7d649..e568677c1f 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Інше" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Ім'я користувача" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index a3366d3a14..d58af36c57 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 8b98a23089..96e9f26dad 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 00:13+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index d83721115e..59b2787d35 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "یوزر نیم" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 98bce5ec53..5ef9e366a6 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index df72dc1f3b..08d9c77320 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index bdfd8e0a85..70d280ea4f 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "Khác" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "Tên đăng nhập" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index b1b2e47f3f..f55d0e956f 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 5bf55df586..4e624e0717 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index ca099c6319..f7a27aea32 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "其他" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "用户名" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index dc94c2f0a1..2779f69660 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index aa95f9543b..1496e8cdf6 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: modokwang \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index dcb303f27e..1c5a52b350 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -489,7 +489,7 @@ msgstr "其它" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "用户名" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index b76c08c2ae..34b9ecc840 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index dfa65b5f23..69ec94513d 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index ef4d61b3d1..eb762e6fdf 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -487,7 +487,7 @@ msgstr "" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "用戶名稱" #: templates/users.php:91 msgid "Storage" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 365c737750..19700e52bf 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index e0f2705ea2..962888f92d 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-18 23:28+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: pellaeon \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 96d7376c8b..8c676eb426 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-20 00:37+0000\n" +"POT-Creation-Date: 2013-06-21 08:49+0200\n" +"PO-Revision-Date: 2013-06-20 09:52+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -488,7 +488,7 @@ msgstr "其他" #: templates/users.php:84 msgid "Username" -msgstr "" +msgstr "使用者名稱" #: templates/users.php:91 msgid "Storage" diff --git a/settings/l10n/af_ZA.php b/settings/l10n/af_ZA.php index f32b79b80f..f89e006292 100644 --- a/settings/l10n/af_ZA.php +++ b/settings/l10n/af_ZA.php @@ -1,4 +1,5 @@ "Wagwoord", -"New password" => "Nuwe wagwoord" +"New password" => "Nuwe wagwoord", +"Username" => "Gebruikersnaam" ); diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index db79ae2b09..73eb412774 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -103,6 +103,7 @@ "Default Storage" => "وحدة التخزين الافتراضية", "Unlimited" => "غير محدود", "Other" => "شيء آخر", +"Username" => "إسم المستخدم", "Storage" => "وحدة التخزين", "change display name" => "تغيير اسم الحساب", "set new password" => "اعداد كلمة مرور جديدة", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index d20e64f2e0..31e5132edd 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -57,6 +57,7 @@ "Default Storage" => "Хранилище по подразбиране", "Unlimited" => "Неограничено", "Other" => "Други", +"Username" => "Потребител", "Storage" => "Хранилище", "Default" => "По подразбиране" ); diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index 8c25913fc1..d5cecb60aa 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -58,6 +58,7 @@ "Default Storage" => "পূর্বনির্ধারিত সংরক্ষণাগার", "Unlimited" => "অসীম", "Other" => "অন্যান্য", +"Username" => "ব্যবহারকারী", "Storage" => "সংরক্ষণাগার", "Default" => "পূর্বনির্ধারিত" ); diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 201c15536a..5125fa6ee6 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -106,6 +106,7 @@ "Default Storage" => "Emmagatzemament per defecte", "Unlimited" => "Il·limitat", "Other" => "Un altre", +"Username" => "Nom d'usuari", "Storage" => "Emmagatzemament", "change display name" => "canvia el nom a mostrar", "set new password" => "estableix nova contrasenya", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 3906c2f718..24dd196469 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -106,6 +106,7 @@ "Default Storage" => "Výchozí úložiště", "Unlimited" => "Neomezeně", "Other" => "Jiný", +"Username" => "Uživatelské jméno", "Storage" => "Úložiště", "change display name" => "změnit zobrazované jméno", "set new password" => "nastavit nové heslo", diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php index 7ffcbdb45b..98a46f5aca 100644 --- a/settings/l10n/cy_GB.php +++ b/settings/l10n/cy_GB.php @@ -12,5 +12,6 @@ "Password" => "Cyfrinair", "New password" => "Cyfrinair newydd", "Email" => "E-bost", -"Other" => "Arall" +"Other" => "Arall", +"Username" => "Enw defnyddiwr" ); diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 8e9d682ab7..d20ce6b140 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -106,6 +106,7 @@ "Default Storage" => "Standard opbevaring", "Unlimited" => "Ubegrænset", "Other" => "Andet", +"Username" => "Brugernavn", "Storage" => "Opbevaring", "change display name" => "skift skærmnavn", "set new password" => "skift kodeord", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 3722d5db0c..c8fdc253e9 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -102,9 +102,11 @@ "Login Name" => "Loginname", "Create" => "Anlegen", "Admin Recovery Password" => "Admin-Wiederherstellungspasswort", +"Enter the recovery password in order to recover the users files during password change" => "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen", "Default Storage" => "Standard-Speicher", "Unlimited" => "Unbegrenzt", "Other" => "Andere", +"Username" => "Benutzername", "Storage" => "Speicher", "change display name" => "Anzeigenamen ändern", "set new password" => "Neues Passwort setzen", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index c7846f79b3..700eda6c58 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -102,9 +102,11 @@ "Login Name" => "Loginname", "Create" => "Erstellen", "Admin Recovery Password" => "Admin-Paswort-Wiederherstellung", +"Enter the recovery password in order to recover the users files during password change" => "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen", "Default Storage" => "Standard-Speicher", "Unlimited" => "Unbegrenzt", "Other" => "Andere", +"Username" => "Benutzername", "Storage" => "Speicher", "change display name" => "Anzeigenamen ändern", "set new password" => "Neues Passwort setzen", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 6c07c9d8b4..2c8bdbb890 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -105,6 +105,7 @@ "Default Storage" => "Προκαθορισμένη Αποθήκευση ", "Unlimited" => "Απεριόριστο", "Other" => "Άλλο", +"Username" => "Όνομα χρήστη", "Storage" => "Αποθήκευση", "change display name" => "αλλαγή ονόματος εμφάνισης", "set new password" => "επιλογή νέου κωδικού", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 9fd1d5b320..4ced1d3c22 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -70,6 +70,7 @@ "Default Storage" => "Defaŭlta konservejo", "Unlimited" => "Senlima", "Other" => "Alia", +"Username" => "Uzantonomo", "Storage" => "Konservejo", "Default" => "Defaŭlta" ); diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 2204f10dee..9d6a2bedae 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -106,6 +106,7 @@ "Default Storage" => "Almacenamiento predeterminado", "Unlimited" => "Ilimitado", "Other" => "Otro", +"Username" => "Nombre de usuario", "Storage" => "Almacenamiento", "change display name" => "Cambiar nombre a mostrar", "set new password" => "Configurar nueva contraseña", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 9ca0e68aa3..f8876ca704 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -106,6 +106,7 @@ "Default Storage" => "Almacenamiento Predeterminado", "Unlimited" => "Ilimitado", "Other" => "Otros", +"Username" => "Nombre de usuario", "Storage" => "Almacenamiento", "change display name" => "Cambiar el nombre que se muestra", "set new password" => "Configurar nueva contraseña", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index ab9cda4b56..68cee88cf2 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -106,6 +106,7 @@ "Default Storage" => "Vaikimisi maht", "Unlimited" => "Piiramatult", "Other" => "Muu", +"Username" => "Kasutajanimi", "Storage" => "Maht", "change display name" => "muuda näidatavat nime", "set new password" => "määra uus parool", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index b7a6cacc47..74ddd956f3 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -103,6 +103,7 @@ "Default Storage" => "Lehenetsitako Biltegiratzea", "Unlimited" => "Mugarik gabe", "Other" => "Bestelakoa", +"Username" => "Erabiltzaile izena", "Storage" => "Biltegiratzea", "change display name" => "aldatu bistaratze izena", "set new password" => "ezarri pasahitz berria", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index b415f2990d..e0090996f2 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -96,6 +96,7 @@ "Default Storage" => "ذخیره سازی پیش فرض", "Unlimited" => "نامحدود", "Other" => "دیگر", +"Username" => "نام کاربری", "Storage" => "حافظه", "change display name" => "تغییر نام نمایشی", "set new password" => "تنظیم کلمه عبور جدید", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 38ba5629c8..80ce2a7076 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -91,6 +91,7 @@ "Default Storage" => "Oletustallennustila", "Unlimited" => "Rajoittamaton", "Other" => "Muu", +"Username" => "Käyttäjätunnus", "Storage" => "Tallennustila", "change display name" => "vaihda näyttönimi", "set new password" => "aseta uusi salasana", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 5997ccbf24..fde0806aab 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -106,6 +106,7 @@ "Default Storage" => "Support de stockage par défaut", "Unlimited" => "Illimité", "Other" => "Autre", +"Username" => "Nom d'utilisateur", "Storage" => "Support de stockage", "change display name" => "Changer le nom affiché", "set new password" => "Changer le mot de passe", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 51e8ee95e0..0d12e272f4 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -106,6 +106,7 @@ "Default Storage" => "Almacenamento predeterminado", "Unlimited" => "Sen límites", "Other" => "Outro", +"Username" => "Nome de usuario", "Storage" => "Almacenamento", "change display name" => "cambiar o nome visíbel", "set new password" => "estabelecer un novo contrasinal", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index b2edebe08f..212bf1ed67 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -97,6 +97,7 @@ "Default Storage" => "אחסון בררת המחדל", "Unlimited" => "ללא הגבלה", "Other" => "אחר", +"Username" => "שם משתמש", "Storage" => "אחסון", "change display name" => "החלפת שם התצוגה", "set new password" => "הגדרת ססמה חדשה", diff --git a/settings/l10n/hi.php b/settings/l10n/hi.php index 034ededf5f..a9b508bcb2 100644 --- a/settings/l10n/hi.php +++ b/settings/l10n/hi.php @@ -1,4 +1,5 @@ "पासवर्ड", -"New password" => "नया पासवर्ड" +"New password" => "नया पासवर्ड", +"Username" => "प्रयोक्ता का नाम" ); diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 87ebf13f79..4bfbc2d3d5 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -32,5 +32,6 @@ "Language" => "Jezik", "Help translate" => "Pomoć prevesti", "Create" => "Izradi", -"Other" => "ostali" +"Other" => "ostali", +"Username" => "Korisničko ime" ); diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 636a3e2c95..57482afefc 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -106,6 +106,7 @@ "Default Storage" => "Alapértelmezett tárhely", "Unlimited" => "Korlátlan", "Other" => "Más", +"Username" => "Felhasználónév", "Storage" => "Tárhely", "change display name" => "a megjelenített név módosítása", "set new password" => "új jelszó beállítása", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index 8d67b45347..d6d1c9eb86 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -21,5 +21,6 @@ "Language" => "Linguage", "Help translate" => "Adjuta a traducer", "Create" => "Crear", -"Other" => "Altere" +"Other" => "Altere", +"Username" => "Nomine de usator" ); diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 02da3c3cf2..f2e41221a9 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -103,6 +103,7 @@ "Default Storage" => "Penyimpanan Baku", "Unlimited" => "Tak terbatas", "Other" => "Lainnya", +"Username" => "Nama pengguna", "Storage" => "Penyimpanan", "change display name" => "ubah nama tampilan", "set new password" => "setel sandi baru", diff --git a/settings/l10n/is.php b/settings/l10n/is.php index e8f64966ce..aa3df8c3c4 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -63,6 +63,7 @@ "Default Storage" => "Sjálfgefin gagnageymsla", "Unlimited" => "Ótakmarkað", "Other" => "Annað", +"Username" => "Notendanafn", "Storage" => "gagnapláss", "Default" => "Sjálfgefið" ); diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 3433f56f2d..85e78f5a21 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -106,6 +106,7 @@ "Default Storage" => "Archiviazione predefinita", "Unlimited" => "Illimitata", "Other" => "Altro", +"Username" => "Nome utente", "Storage" => "Archiviazione", "change display name" => "cambia il nome visualizzato", "set new password" => "imposta una nuova password", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index ddff0f328a..1b2562261d 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -106,6 +106,7 @@ "Default Storage" => "デフォルトストレージ", "Unlimited" => "無制限", "Other" => "その他", +"Username" => "ユーザー名", "Storage" => "ストレージ", "change display name" => "表示名を変更", "set new password" => "新しいパスワードを設定", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 4a118eb785..812ad46bd7 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -104,6 +104,7 @@ "Default Storage" => "საწყისი საცავი", "Unlimited" => "ულიმიტო", "Other" => "სხვა", +"Username" => "მომხმარებლის სახელი", "Storage" => "საცავი", "change display name" => "შეცვალე დისფლეის სახელი", "set new password" => "დააყენეთ ახალი პაროლი", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index ee80477d22..de837677eb 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -106,6 +106,7 @@ "Default Storage" => "기본 저장소", "Unlimited" => "무제한", "Other" => "기타", +"Username" => "사용자 이름", "Storage" => "저장소", "change display name" => "표시 이름 변경", "set new password" => "새 암호 설정", diff --git a/settings/l10n/ku_IQ.php b/settings/l10n/ku_IQ.php index a7d2daa70b..244aba63a2 100644 --- a/settings/l10n/ku_IQ.php +++ b/settings/l10n/ku_IQ.php @@ -5,5 +5,6 @@ "Update" => "نوێکردنه‌وه", "Password" => "وشەی تێپەربو", "New password" => "وشەی نهێنی نوێ", -"Email" => "ئیمه‌یل" +"Email" => "ئیمه‌یل", +"Username" => "ناوی به‌کارهێنه‌ر" ); diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 427e6568a4..7060d41537 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -39,5 +39,6 @@ "Language" => "Sprooch", "Help translate" => "Hëllef iwwersetzen", "Create" => "Erstellen", -"Other" => "Aner" +"Other" => "Aner", +"Username" => "Benotzernumm" ); diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 225185686d..eb628a530e 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -40,5 +40,6 @@ "Language" => "Kalba", "Help translate" => "Padėkite išversti", "Create" => "Sukurti", -"Other" => "Kita" +"Other" => "Kita", +"Username" => "Prisijungimo vardas" ); diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index fd6c2090f5..ae2a3b2838 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -103,6 +103,7 @@ "Default Storage" => "Noklusējuma krātuve", "Unlimited" => "Neierobežota", "Other" => "Cits", +"Username" => "Lietotājvārds", "Storage" => "Krātuve", "change display name" => "mainīt redzamo vārdu", "set new password" => "iestatīt jaunu paroli", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 902a8d2d6a..f42e5b07de 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -56,5 +56,6 @@ "WebDAV" => "WebDAV", "Use this address to connect to your ownCloud in your file manager" => "Користете ја оваа адреса да ", "Create" => "Создај", -"Other" => "Останато" +"Other" => "Останато", +"Username" => "Корисничко име" ); diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index a0b94f1a1b..d151cba29f 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -31,5 +31,6 @@ "Language" => "Bahasa", "Help translate" => "Bantu terjemah", "Create" => "Buat", -"Other" => "Lain" +"Other" => "Lain", +"Username" => "Nama pengguna" ); diff --git a/settings/l10n/my_MM.php b/settings/l10n/my_MM.php index d12c9bcf03..9459a2e53f 100644 --- a/settings/l10n/my_MM.php +++ b/settings/l10n/my_MM.php @@ -3,5 +3,6 @@ "Invalid request" => "တောင်းဆိုချက်မမှန်ကန်ပါ", "Security Warning" => "လုံခြုံရေးသတိပေးချက်", "Password" => "စကားဝှက်", -"New password" => "စကားဝှက်အသစ်" +"New password" => "စကားဝှက်အသစ်", +"Username" => "သုံးစွဲသူအမည်" ); diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index b6182cc308..8b1c577e88 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -104,6 +104,7 @@ "Default Storage" => "Standard lager", "Unlimited" => "Ubegrenset", "Other" => "Annet", +"Username" => "Brukernavn", "Storage" => "Lager", "change display name" => "endre visningsnavn", "set new password" => "sett nytt passord", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index a2df948d13..40220cbbd2 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -106,6 +106,7 @@ "Default Storage" => "Standaard Opslaglimiet", "Unlimited" => "Ongelimiteerd", "Other" => "Anders", +"Username" => "Gebruikersnaam", "Storage" => "Opslaglimiet", "change display name" => "wijzig weergavenaam", "set new password" => "Instellen nieuw wachtwoord", diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 61ece5823d..4ec8d51db6 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -104,6 +104,7 @@ "Default Storage" => "Standardlagring", "Unlimited" => "Ubegrensa", "Other" => "Anna", +"Username" => "Brukarnamn", "Storage" => "Lagring", "change display name" => "endra visingsnamn", "set new password" => "lag nytt passord", diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index 052974591a..34820d0349 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -46,5 +46,6 @@ "Language" => "Lenga", "Help translate" => "Ajuda a la revirada", "Create" => "Crea", -"Other" => "Autres" +"Other" => "Autres", +"Username" => "Non d'usancièr" ); diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 41d774fa36..4fea6b68ca 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -106,6 +106,7 @@ "Default Storage" => "Magazyn domyślny", "Unlimited" => "Bez limitu", "Other" => "Inne", +"Username" => "Nazwa użytkownika", "Storage" => "Magazyn", "change display name" => "zmień wyświetlaną nazwę", "set new password" => "ustaw nowe hasło", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 2ffa32f603..48cc6200b3 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -106,6 +106,7 @@ "Default Storage" => "Armazenamento Padrão", "Unlimited" => "Ilimitado", "Other" => "Outro", +"Username" => "Nome de Usuário", "Storage" => "Armazenamento", "change display name" => "alterar nome de exibição", "set new password" => "definir nova senha", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index b810d51a2e..7a54ca74ba 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -106,6 +106,7 @@ "Default Storage" => "Armazenamento Padrão", "Unlimited" => "Ilimitado", "Other" => "Outro", +"Username" => "Nome de utilizador", "Storage" => "Armazenamento", "change display name" => "modificar nome exibido", "set new password" => "definir nova palavra-passe", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 99fb14b4df..48f18070f3 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -75,6 +75,7 @@ "Default Storage" => "Stocare implicită", "Unlimited" => "Nelimitată", "Other" => "Altele", +"Username" => "Nume utilizator", "Storage" => "Stocare", "Default" => "Implicită" ); diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 32b7b65e90..df616008fa 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -106,6 +106,7 @@ "Default Storage" => "Хранилище по-умолчанию", "Unlimited" => "Неограниченно", "Other" => "Другое", +"Username" => "Имя пользователя", "Storage" => "Хранилище", "change display name" => "изменить отображаемое имя", "set new password" => "установить новый пароль", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 4303b14c37..5fa1eaf5f4 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -47,5 +47,6 @@ "Language" => "භාෂාව", "Help translate" => "පරිවර්ථන සහය", "Create" => "තනන්න", -"Other" => "වෙනත්" +"Other" => "වෙනත්", +"Username" => "පරිශීලක නම" ); diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 595a75833a..9164cbd9b0 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -102,9 +102,11 @@ "Login Name" => "Prihlasovacie meno", "Create" => "Vytvoriť", "Admin Recovery Password" => "Obnovenie hesla administrátora", +"Enter the recovery password in order to recover the users files during password change" => "Zadajte heslo pre obnovenie súborov používateľa pri zmene hesla", "Default Storage" => "Predvolené úložisko", "Unlimited" => "Nelimitované", "Other" => "Iné", +"Username" => "Meno používateľa", "Storage" => "Úložisko", "change display name" => "zmeniť zobrazované meno", "set new password" => "nastaviť nové heslo", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 413300abc5..21c10abf0f 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -104,6 +104,7 @@ "Default Storage" => "Privzeta shramba", "Unlimited" => "Neomejeno", "Other" => "Drugo", +"Username" => "Uporabniško ime", "Storage" => "Shramba", "change display name" => "spremeni prikazano ime", "set new password" => "nastavi novo geslo", diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php index 03db0cd8fc..c81e58e2fa 100644 --- a/settings/l10n/sq.php +++ b/settings/l10n/sq.php @@ -10,5 +10,6 @@ "Get the apps to sync your files" => "Merrni app-et për sinkronizimin e skedarëve tuaj", "Password" => "Kodi", "New password" => "Kodi i ri", -"Email" => "Email-i" +"Email" => "Email-i", +"Username" => "Përdoruesi" ); diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 8437c054da..2b95ddcad4 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -97,6 +97,7 @@ "Default Storage" => "Подразумевано складиште", "Unlimited" => "Неограничено", "Other" => "Друго", +"Username" => "Корисничко име", "Storage" => "Складиште", "change display name" => "промени име за приказ", "set new password" => "постави нову лозинку", diff --git a/settings/l10n/sr@latin.php b/settings/l10n/sr@latin.php index 96190507d5..8e375a7f23 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -13,5 +13,6 @@ "Email" => "E-mail", "Language" => "Jezik", "Create" => "Napravi", -"Other" => "Drugo" +"Other" => "Drugo", +"Username" => "Korisničko ime" ); diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 0eae190737..8773fe0dc1 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -106,6 +106,7 @@ "Default Storage" => "Förvald lagring", "Unlimited" => "Obegränsad", "Other" => "Annat", +"Username" => "Användarnamn", "Storage" => "Lagring", "change display name" => "ändra visningsnamn", "set new password" => "ange nytt lösenord", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index 052bb82365..64e9cb85aa 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -45,5 +45,6 @@ "Language" => "மொழி", "Help translate" => "மொழிபெயர்க்க உதவி", "Create" => "உருவாக்குக", -"Other" => "மற்றவை" +"Other" => "மற்றவை", +"Username" => "பயனாளர் பெயர்" ); diff --git a/settings/l10n/te.php b/settings/l10n/te.php index 8bce394ddf..0e619282e8 100644 --- a/settings/l10n/te.php +++ b/settings/l10n/te.php @@ -5,5 +5,6 @@ "Password" => "సంకేతపదం", "New password" => "కొత్త సంకేతపదం", "Your email address" => "మీ ఈమెయిలు చిరునామా", -"Language" => "భాష" +"Language" => "భాష", +"Username" => "వాడుకరి పేరు" ); diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 895e1c3e83..7221cd7348 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -83,6 +83,7 @@ "Default Storage" => "พื้นที่จำกัดข้อมูลเริ่มต้น", "Unlimited" => "ไม่จำกัดจำนวน", "Other" => "อื่นๆ", +"Username" => "ชื่อผู้ใช้งาน", "Storage" => "พื้นที่จัดเก็บข้อมูล", "change display name" => "เปลี่ยนชื่อที่ต้องการให้แสดง", "set new password" => "ตั้งค่ารหัสผ่านใหม่", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 1fcf6ac6c0..ef7b797ef6 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -105,6 +105,7 @@ "Default Storage" => "Varsayılan Depolama", "Unlimited" => "Limitsiz", "Other" => "Diğer", +"Username" => "Kullanıcı Adı", "Storage" => "Depolama", "change display name" => "ekran adını değiştir", "set new password" => "yeni parola belirle", diff --git a/settings/l10n/ug.php b/settings/l10n/ug.php index 8e8c17f0d3..abed87ef0d 100644 --- a/settings/l10n/ug.php +++ b/settings/l10n/ug.php @@ -64,6 +64,7 @@ "Default Storage" => "كۆڭۈلدىكى ساقلىغۇچ", "Unlimited" => "چەكسىز", "Other" => "باشقا", +"Username" => "ئىشلەتكۈچى ئاتى", "Storage" => "ساقلىغۇچ", "change display name" => "كۆرسىتىدىغان ئىسىمنى ئۆزگەرت", "set new password" => "يېڭى ئىم تەڭشە", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index ca5a5d8a07..1de01ec6a0 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -103,6 +103,7 @@ "Default Storage" => "сховище за замовчуванням", "Unlimited" => "Необмежено", "Other" => "Інше", +"Username" => "Ім'я користувача", "Storage" => "Сховище", "change display name" => "змінити зображене ім'я", "set new password" => "встановити новий пароль", diff --git a/settings/l10n/ur_PK.php b/settings/l10n/ur_PK.php index 02bcb05732..ce1d425c97 100644 --- a/settings/l10n/ur_PK.php +++ b/settings/l10n/ur_PK.php @@ -1,5 +1,6 @@ "ایرر", "Password" => "پاسورڈ", -"New password" => "نیا پاسورڈ" +"New password" => "نیا پاسورڈ", +"Username" => "یوزر نیم" ); diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index d7b4b81e11..7eb5df0edf 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -84,6 +84,7 @@ "Default Storage" => "Bộ nhớ mặc định", "Unlimited" => "Không giới hạn", "Other" => "Khác", +"Username" => "Tên đăng nhập", "Storage" => "Bộ nhớ", "change display name" => "Thay đổi tên hiển thị", "set new password" => "đặt mật khẩu mới", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 67946587e5..0457de48a2 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -101,6 +101,7 @@ "Default Storage" => "默认容量", "Unlimited" => "无限制", "Other" => "其他", +"Username" => "用户名", "Storage" => "容量", "change display name" => "更改显示名称", "set new password" => "设置新的密码", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 248fce04eb..7669b922b6 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -105,6 +105,7 @@ "Default Storage" => "默认存储", "Unlimited" => "无限", "Other" => "其它", +"Username" => "用户名", "Storage" => "存储", "change display name" => "修改显示名称", "set new password" => "设置新密码", diff --git a/settings/l10n/zh_HK.php b/settings/l10n/zh_HK.php index 843a41c9c1..8da9746275 100644 --- a/settings/l10n/zh_HK.php +++ b/settings/l10n/zh_HK.php @@ -4,5 +4,6 @@ "Delete" => "刪除", "Password" => "密碼", "New password" => "新密碼", -"Email" => "電郵" +"Email" => "電郵", +"Username" => "用戶名稱" ); diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index ae52b17086..0d3ff7414b 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -105,6 +105,7 @@ "Default Storage" => "預設儲存區", "Unlimited" => "無限制", "Other" => "其他", +"Username" => "使用者名稱", "Storage" => "儲存區", "change display name" => "修改顯示名稱", "set new password" => "設定新密碼", From d10ad0d603d0755f0e57e92ecbce447a8944dc3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 21 Jun 2013 10:37:51 +0200 Subject: [PATCH 17/36] Squashed commit of the following: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit commit 1345201c9da99a82f198e41fba24da6b0d7ae59a Author: Björn Schießle Date: Thu Jun 20 16:27:46 2013 +0200 add l10n support commit bf2c79c8de8710e839a4a55642a91874c374fa1c Author: Björn Schießle Date: Thu Jun 20 16:19:10 2013 +0200 only init session if openssl extension is loaded commit cbd52af6afbaa310bb1a534db64ff5e476dfd5d7 Author: Björn Schießle Date: Thu Jun 20 12:25:40 2013 +0200 first disable app and than show error page commit 55baf593179c433642de59552592e6b0f1932880 Author: Björn Schießle Date: Thu Jun 20 12:17:34 2013 +0200 typo fixed commit 1d9bef0b058e7cc3d511b81ae12d5a07660c75b2 Author: Björn Schießle Date: Thu Jun 20 12:15:40 2013 +0200 move dependency check to the encryption app commit c186e95da526f0470e20f014f1bd9513db5518ff Author: Björn Schießle Date: Thu Jun 20 11:13:11 2013 +0200 make sure that openssl is installed and loaded --- apps/files_encryption/appinfo/app.php | 13 +++++++++---- apps/files_encryption/hooks/hooks.php | 14 +++++++++----- 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/apps/files_encryption/appinfo/app.php b/apps/files_encryption/appinfo/app.php index 419bef1ede..d97811bb79 100644 --- a/apps/files_encryption/appinfo/app.php +++ b/apps/files_encryption/appinfo/app.php @@ -33,13 +33,18 @@ if (!OC_Config::getValue('maintenance', false)) { } $view = new OC_FilesystemView('/'); - $session = new \OCA\Encryption\Session($view); + + $sessionReady = false; + if(extension_loaded("openssl")) { + $session = new \OCA\Encryption\Session($view); + $sessionReady = true; + } $user = \OCP\USER::getUser(); // check if user has a private key - if ( - !$view->file_exists('/' . $user . '/files_encryption/' . $user . '.private.key') - && OCA\Encryption\Crypt::mode() === 'server' + if ($sessionReady === false + || (!$view->file_exists('/' . $user . '/files_encryption/' . $user . '.private.key') + && OCA\Encryption\Crypt::mode() === 'server') ) { // Force the user to log-in again if the encryption key isn't unlocked diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 7698b95cfd..e39e068cc5 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -38,11 +38,15 @@ class Hooks { * @note This method should never be called for users using client side encryption */ public static function login($params) { - - // Manually initialise Filesystem{} singleton with correct - // fake root path, in order to avoid fatal webdav errors - // NOTE: disabled because this give errors on webdav! - //\OC\Files\Filesystem::init( $params['uid'], '/' . 'files' . '/' ); + $l = new \OC_L10N('files_encryption'); + //check if openssl is available + if(!extension_loaded("openssl") ) { + $error_msg = $l->t("PHP module OpenSSL is not installed."); + $hint = $l->t('Please ask your server administrator to install the module. For now the encryption app was disabled.'); + \OC_App::disable('files_encryption'); + \OCP\Util::writeLog('Encryption library', $error_msg . ' ' . $hint, \OCP\Util::ERROR); + \OCP\Template::printErrorPage($error_msg, $hint); + } $view = new \OC_FilesystemView('/'); From 76369b74245a5ab22384c8aa83ca977fb26db0fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 21 Jun 2013 13:07:52 +0200 Subject: [PATCH 18/36] encryption is LDAP compatible --- apps/files_encryption/appinfo/info.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_encryption/appinfo/info.xml b/apps/files_encryption/appinfo/info.xml index ea8f6cf6f3..1e97b1b221 100644 --- a/apps/files_encryption/appinfo/info.xml +++ b/apps/files_encryption/appinfo/info.xml @@ -2,7 +2,7 @@ files_encryption Encryption - WARNING: This is a preview release of the new ownCloud 5 encryption system. Testing and feedback is very welcome but don't use this in production yet. Encryption is not yet compatible with LDAP. + WARNING: This is a preview release of the new ownCloud 5 encryption system. Testing and feedback is very welcome but don't use this in production yet. After the app was enabled you need to re-login to initialize your encryption keys AGPL Sam Tuke, Bjoern Schiessle, Florin Peter 4 From b0e12592957d2d2345924c0ac65e140be0e178db Mon Sep 17 00:00:00 2001 From: Georg Ehrke Date: Fri, 21 Jun 2013 14:39:04 +0200 Subject: [PATCH 19/36] improve error handling of webdavauth --- apps/user_webdavauth/user_webdavauth.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/user_webdavauth/user_webdavauth.php b/apps/user_webdavauth/user_webdavauth.php index 146034a5d4..86e5b916f3 100755 --- a/apps/user_webdavauth/user_webdavauth.php +++ b/apps/user_webdavauth/user_webdavauth.php @@ -56,10 +56,10 @@ class OC_USER_WEBDAVAUTH extends OC_User_Backend { } $returncode= substr($headers[0], 9, 3); - if(($returncode=='401') or ($returncode=='403')) { - return(false); - }else{ - return($uid); + if(substr($returncode, 0, 1) === '2') { + return $uid; + } else { + return false; } } From f40f49851c2ee371cbd2d7ce6bafaf0d96bd44ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Schie=C3=9Fle?= Date: Fri, 21 Jun 2013 14:47:31 +0200 Subject: [PATCH 20/36] fix some strings in the admin settings, it's not a 'recovery account' but a 'recovery key' --- apps/files_encryption/templates/settings-admin.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/files_encryption/templates/settings-admin.php b/apps/files_encryption/templates/settings-admin.php index c420b006c4..f5f7582c2a 100644 --- a/apps/files_encryption/templates/settings-admin.php +++ b/apps/files_encryption/templates/settings-admin.php @@ -7,11 +7,11 @@

    - t("Enable encryption passwords recovery key (allow sharing to recovery key):")); ?> + t("Enable recovery key (allow to recover users files in case of password loss):")); ?>

    - +

    - t("Change encryption passwords recovery key:")); ?> + t("Change recovery key password:")); ?>

    /> - +
    /> - +