From 8fcc29ee8b7b5ed600c8ec7116f52486718467f6 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 10 Dec 2013 17:50:45 +0100 Subject: only check ldap_errno if an ldap_* function actually fails fix wizard errors reset search paging right after the search, not before some of the possible next search operations cookie contains binary characters, don't log it (avoids json_encode(): Invalid UTF-8 sequence in argument errors) --- apps/user_ldap/lib/access.php | 10 ++++++---- apps/user_ldap/lib/ldap.php | 6 ++++-- apps/user_ldap/lib/wizard.php | 1 + 3 files changed, 11 insertions(+), 6 deletions(-) (limited to 'apps') diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index b7e4023dd73..018cf13c91c 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -63,7 +63,6 @@ class Access extends LDAPUtility { return false; } //all or nothing! otherwise we get in trouble with. - $this->initPagedSearch($filter, array($dn), $attr, 99999, 0); $dn = $this->DNasBaseParameter($dn); $rr = @$this->ldap->read($cr, $dn, $filter, array($attr)); if(!$this->ldap->isResource($rr)) { @@ -707,6 +706,9 @@ class Access extends LDAPUtility { $linkResources = array_pad(array(), count($base), $cr); $sr = $this->ldap->search($linkResources, $base, $filter, $attr); $error = $this->ldap->errno($cr); + if ($pagedSearchOK) { + $this->ldap->controlPagedResult($cr, 0, false, ""); + } if(!is_array($sr) || $error !== 0) { \OCP\Util::writeLog('user_ldap', 'Error when searching: '.$this->ldap->error($cr). @@ -1236,9 +1238,9 @@ class Access extends LDAPUtility { if($this->connection->hasPagedResultSupport && !is_null($limit)) { $offset = intval($offset); //can be null \OCP\Util::writeLog('user_ldap', - 'initializing paged search for Filter'.$filter.' base '.print_r($bases, true) + 'initializing paged search for Filter '.$filter.' base '.print_r($bases, true) .' attr '.print_r($attr, true). ' limit ' .$limit.' offset '.$offset, - \OCP\Util::INFO); + \OCP\Util::DEBUG); //get the cookie from the search for the previous search, required by LDAP foreach($bases as $base) { @@ -1260,7 +1262,7 @@ class Access extends LDAPUtility { } if(!is_null($cookie)) { if($offset > 0) { - \OCP\Util::writeLog('user_ldap', 'Cookie '.$cookie, \OCP\Util::INFO); + \OCP\Util::writeLog('user_ldap', 'Cookie '.CRC32($cookie), \OCP\Util::INFO); } $pagedSearchOK = $this->ldap->controlPagedResult( $this->connection->getConnectionResource(), $limit, diff --git a/apps/user_ldap/lib/ldap.php b/apps/user_ldap/lib/ldap.php index de9b7481c19..0e5f78cd28c 100644 --- a/apps/user_ldap/lib/ldap.php +++ b/apps/user_ldap/lib/ldap.php @@ -78,7 +78,7 @@ class LDAP implements ILDAPWrapper { } public function nextEntry($link, $result) { - return $this->invokeLDAPMethod('next_entry', $link, $result); + return ldap_next_entry($link, $result); } public function read($link, $baseDN, $filter, $attr) { @@ -139,7 +139,9 @@ class LDAP implements ILDAPWrapper { if(function_exists($func)) { $this->preFunctionCall($func, $arguments); $result = call_user_func_array($func, $arguments); - $this->postFunctionCall(); + if ($result === FALSE) { + $this->postFunctionCall(); + } return $result; } } diff --git a/apps/user_ldap/lib/wizard.php b/apps/user_ldap/lib/wizard.php index e79090febc1..04ea87d53e5 100644 --- a/apps/user_ldap/lib/wizard.php +++ b/apps/user_ldap/lib/wizard.php @@ -799,6 +799,7 @@ class Wizard extends LDAPUtility { \OCP\Util::writeLog('user_ldap', 'Wiz: Setting LDAP Options ', \OCP\Util::DEBUG); //set LDAP options $this->ldap->setOption($cr, LDAP_OPT_PROTOCOL_VERSION, 3); + $this->ldap->setOption($cr, LDAP_OPT_REFERRALS, 0); $this->ldap->setOption($cr, LDAP_OPT_NETWORK_TIMEOUT, self::LDAP_NW_TIMEOUT); if($tls) { $isTlsWorking = @$this->ldap->startTls($cr); -- cgit v1.2.3 From 6585bd5a500292a284490e96250d465280f3c34b Mon Sep 17 00:00:00 2001 From: root Date: Wed, 11 Dec 2013 11:00:53 +0100 Subject: "reset" ldap pagedSearch control by setting it to a high value call nextEntry via invokeLDAPMethod --- apps/user_ldap/lib/ldap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/user_ldap/lib/ldap.php b/apps/user_ldap/lib/ldap.php index 0e5f78cd28c..d1ca91045b2 100644 --- a/apps/user_ldap/lib/ldap.php +++ b/apps/user_ldap/lib/ldap.php @@ -78,7 +78,7 @@ class LDAP implements ILDAPWrapper { } public function nextEntry($link, $result) { - return ldap_next_entry($link, $result); + return $this->invokeLDAPMethod('next_entry', $link, $result); } public function read($link, $baseDN, $filter, $attr) { -- cgit v1.2.3 From f850fcfac51080baf1af90d59a8d94b80721c819 Mon Sep 17 00:00:00 2001 From: Alexander Bergolth Date: Thu, 6 Mar 2014 12:23:20 +0100 Subject: "reset" ldap pagedSearch control by setting it to a high value --- apps/user_ldap/lib/access.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 018cf13c91c..01bfbb4cbf6 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -707,7 +707,7 @@ class Access extends LDAPUtility { $sr = $this->ldap->search($linkResources, $base, $filter, $attr); $error = $this->ldap->errno($cr); if ($pagedSearchOK) { - $this->ldap->controlPagedResult($cr, 0, false, ""); + $this->ldap->controlPagedResult($cr, 999999, false, ""); } if(!is_array($sr) || $error !== 0) { \OCP\Util::writeLog('user_ldap', -- cgit v1.2.3 From 43e79f41f34b71499b9bac85d27b87b53a569da0 Mon Sep 17 00:00:00 2001 From: ben-denham Date: Fri, 28 Feb 2014 15:07:25 +1300 Subject: Added improved version of patch by @blizzz in https://github.com/owncloud/core/issues/6651#issuecomment-32261257 to stop filter settings from being reset under a race condition. --- apps/user_ldap/js/settings.js | 192 ++++++++++++++++++++++++++---------------- 1 file changed, 118 insertions(+), 74 deletions(-) (limited to 'apps') diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index acf88ef58a4..0470ee079f9 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -138,6 +138,108 @@ var LdapConfiguration = { } }; + +// LdapFilter object. + +function LdapFilter(target) { + this.locked = true; + this.target = false; + this.mode = LdapWizard.filterModeAssisted; + this.lazyRunCompose = false; + + if( target === 'User' || + target === 'Login' || + target === 'Group') { + this.target = target; + this.determineMode(); + } +} + +LdapFilter.prototype.compose = function() { + var action; + + if(this.locked) { + this.lazyRunCompose = true; + return false; + } + + if(this.target === 'User') { + action = 'getUserListFilter'; + } else if(this.target === 'Login') { + action = 'getUserLoginFilter'; + } else if(this.target === 'Group') { + action = 'getGroupFilter'; + } + + if(!$('#raw'+this.target+'FilterContainer').hasClass('invisible')) { + //Raw filter editing, i.e. user defined filter, don't compose + return; + } + + var param = 'action='+action+ + '&ldap_serverconfig_chooser='+ + encodeURIComponent($('#ldap_serverconfig_chooser').val()); + + var filter = this; + + LdapWizard.ajax(param, + function(result) { + LdapWizard.applyChanges(result); + if(filter.target === 'User') { + LdapWizard.countUsers(); + } else if(filter.target === 'Group') { + LdapWizard.countGroups(); + LdapWizard.detectGroupMemberAssoc(); + } + }, + function (result) { + // error handling + } + ); +} + +LdapFilter.prototype.determineMode = function() { + var param = 'action=get'+encodeURIComponent(this.target)+'FilterMode'+ + '&ldap_serverconfig_chooser='+ + encodeURIComponent($('#ldap_serverconfig_chooser').val()); + + var filter = this; + LdapWizard.ajax(param, + function(result) { + property = 'ldap' + filter.target + 'FilterMode'; + filter.mode = result.changes[property]; + if(filter.mode == LdapWizard.filterModeRaw + && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + } else if(filter.mode == LdapWizard.filterModeAssisted + && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + } + filter.unlock(); + }, + function (result) { + //on error case get back to default i.e. Assisted + if(!$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + filter.mode = LdapWizard.filterModeAssisted; + } + filter.unlock(); + } + ); + +} + +LdapFilter.prototype.unlock = function() { + this.locked = false; + if(this.lazyRunCompose) { + this.lazyRunCompose = false; + this.compose(); + } +} + +// end of LdapFilter object. + + var LdapWizard = { checkPortInfoShown: false, saveBlacklist: {}, @@ -145,6 +247,9 @@ var LdapWizard = { spinner: '', filterModeAssisted: 0, filterModeRaw: 1, + userFilter: false, + loginFilter: false, + groupFilter: false, ajax: function(param, fnOnSuccess, fnOnError) { $.post( @@ -275,41 +380,6 @@ var LdapWizard = { } }, - composeFilter: function(type) { - subject = type.charAt(0).toUpperCase() + type.substr(1); - if(!$('#raw'+subject+'FilterContainer').hasClass('invisible')) { - //Raw filter editing, i.e. user defined filter, don't compose - return; - } - - if(type == 'user') { - action = 'getUserListFilter'; - } else if(type == 'login') { - action = 'getUserLoginFilter'; - } else if(type == 'group') { - action = 'getGroupFilter'; - } - - param = 'action='+action+ - '&ldap_serverconfig_chooser='+ - encodeURIComponent($('#ldap_serverconfig_chooser').val()); - - LdapWizard.ajax(param, - function(result) { - LdapWizard.applyChanges(result); - if(type == 'user') { - LdapWizard.countUsers(); - } else if(type == 'group') { - LdapWizard.countGroups(); - LdapWizard.detectGroupMemberAssoc(); - } - }, - function (result) { - // error handling - } - ); - }, - controlBack: function() { curTabIndex = $('#ldapSettings').tabs('option', 'active'); if(curTabIndex == 0) { @@ -559,7 +629,7 @@ var LdapWizard = { }, initGroupFilter: function() { - LdapWizard.regardFilterMode('Group'); + LdapWizard.groupFilter = new LdapFilter('Group'); LdapWizard.findObjectClasses('ldap_groupfilter_objectclass', 'Group'); LdapWizard.findAvailableGroups('ldap_groupfilter_groups', 'Groups'); LdapWizard.countGroups(); @@ -568,13 +638,13 @@ var LdapWizard = { /** init login filter tab section **/ initLoginFilter: function() { - LdapWizard.regardFilterMode('Login'); + LdapWizard.loginFilter = new LdapFilter('Login'); LdapWizard.findAttributes(); }, postInitLoginFilter: function() { if($('#rawLoginFilterContainer').hasClass('invisible')) { - LdapWizard.composeFilter('login'); + LdapWizard.loginFilter.compose(); } }, @@ -600,7 +670,7 @@ var LdapWizard = { initUserFilter: function() { LdapWizard.userFilterObjectClassesHasRun = false; LdapWizard.userFilterAvailableGroupsHasRun = false; - LdapWizard.regardFilterMode('User'); + LdapWizard.userFilter = new LdapFilter('User'); LdapWizard.findObjectClasses('ldap_userfilter_objectclass', 'User'); LdapWizard.findAvailableGroups('ldap_userfilter_groups', 'Users'); }, @@ -608,7 +678,7 @@ var LdapWizard = { postInitUserFilter: function() { if(LdapWizard.userFilterObjectClassesHasRun && LdapWizard.userFilterAvailableGroupsHasRun) { - LdapWizard.composeFilter('user'); + LdapWizard.userFilter.compose(); LdapWizard.countUsers(); } }, @@ -657,7 +727,7 @@ var LdapWizard = { if(triggerObj.id == 'ldap_loginfilter_username' || triggerObj.id == 'ldap_loginfilter_email') { - LdapWizard.composeFilter('login'); + LdapWizard.loginFilter.compose(); } if($('#ldapSettings').tabs('option', 'active') == 0) { @@ -666,32 +736,6 @@ var LdapWizard = { } }, - regardFilterMode: function(subject) { - param = 'action=get'+encodeURIComponent(subject)+'FilterMode'+ - '&ldap_serverconfig_chooser='+ - encodeURIComponent($('#ldap_serverconfig_chooser').val()); - - LdapWizard.ajax(param, - function(result) { - property = 'ldap' + subject + 'FilterMode'; - mode = result.changes[property]; - if(mode == LdapWizard.filterModeRaw - && $('#raw'+subject+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+subject+'Filter'](); - } else if(mode == LdapWizard.filterModeAssisted - && !$('#raw'+subject+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+subject+'Filter'](); - } - }, - function (result) { - //on error case get back to default i.e. Assisted - if(!$('#raw'+subject+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+subject+'Filter'](); - } - } - ); - }, - save: function(inputObj) { if(LdapWizard.blacklistRemove(inputObj.id)) { return; @@ -713,15 +757,15 @@ var LdapWizard = { LdapWizard._save($('#'+originalObj)[0], $.trim(values)); if(originalObj == 'ldap_userfilter_objectclass' || originalObj == 'ldap_userfilter_groups') { - LdapWizard.composeFilter('user'); + LdapWizard.userFilter.compose(); //when user filter is changed afterwards, login filter needs to //be adjusted, too - LdapWizard.composeFilter('login'); + LdapWizard.loginFilter.compose(); } else if(originalObj == 'ldap_loginfilter_attributes') { - LdapWizard.composeFilter('login'); + LdapWizard.loginFilter.compose(); } else if(originalObj == 'ldap_groupfilter_objectclass' || originalObj == 'ldap_groupfilter_groups') { - LdapWizard.composeFilter('group'); + LdapWizard.groupFilter.compose(); } }, @@ -777,10 +821,10 @@ var LdapWizard = { LdapWizard._save({ id: modeKey }, LdapWizard.filterModeAssisted); if(moc.indexOf('user') >= 0) { LdapWizard.blacklistRemove('ldap_userlist_filter'); - LdapWizard.composeFilter('user'); + LdapWizard.userFilter.compose(); } else { LdapWizard.blacklistRemove('ldap_group_filter'); - LdapWizard.composeFilter('group'); + LdapWizard.groupFilter.compose(); } } }, @@ -814,7 +858,7 @@ var LdapWizard = { $('#ldap_loginfilter_username').prop('disabled', property); LdapWizard._save({ id: 'ldapLoginFilterMode' }, mode); if(action == 'enable') { - LdapWizard.composeFilter('login'); + LdapWizard.loginFilter.compose(); } }, -- cgit v1.2.3 From ef65381a0b41a1d6519e7d5bf39d3aac75127a1e Mon Sep 17 00:00:00 2001 From: ben-denham Date: Fri, 7 Mar 2014 10:10:42 +1300 Subject: Moved LdapFilter into a separate js file in user_ldap. --- apps/user_ldap/js/ldapFilter.js | 95 +++++++++++++++++++++++++++++++++++++ apps/user_ldap/js/settings.js | 102 ---------------------------------------- apps/user_ldap/settings.php | 1 + 3 files changed, 96 insertions(+), 102 deletions(-) create mode 100644 apps/user_ldap/js/ldapFilter.js (limited to 'apps') diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js new file mode 100644 index 00000000000..71f8cd6c7c4 --- /dev/null +++ b/apps/user_ldap/js/ldapFilter.js @@ -0,0 +1,95 @@ +function LdapFilter(target) { + this.locked = true; + this.target = false; + this.mode = LdapWizard.filterModeAssisted; + this.lazyRunCompose = false; + + if( target === 'User' || + target === 'Login' || + target === 'Group') { + this.target = target; + this.determineMode(); + } +} + +LdapFilter.prototype.compose = function() { + var action; + + if(this.locked) { + this.lazyRunCompose = true; + return false; + } + + if(this.target === 'User') { + action = 'getUserListFilter'; + } else if(this.target === 'Login') { + action = 'getUserLoginFilter'; + } else if(this.target === 'Group') { + action = 'getGroupFilter'; + } + + if(!$('#raw'+this.target+'FilterContainer').hasClass('invisible')) { + //Raw filter editing, i.e. user defined filter, don't compose + return; + } + + var param = 'action='+action+ + '&ldap_serverconfig_chooser='+ + encodeURIComponent($('#ldap_serverconfig_chooser').val()); + + var filter = this; + + LdapWizard.ajax(param, + function(result) { + LdapWizard.applyChanges(result); + if(filter.target === 'User') { + LdapWizard.countUsers(); + } else if(filter.target === 'Group') { + LdapWizard.countGroups(); + LdapWizard.detectGroupMemberAssoc(); + } + }, + function (result) { + // error handling + } + ); +} + +LdapFilter.prototype.determineMode = function() { + var param = 'action=get'+encodeURIComponent(this.target)+'FilterMode'+ + '&ldap_serverconfig_chooser='+ + encodeURIComponent($('#ldap_serverconfig_chooser').val()); + + var filter = this; + LdapWizard.ajax(param, + function(result) { + property = 'ldap' + filter.target + 'FilterMode'; + filter.mode = result.changes[property]; + if(filter.mode == LdapWizard.filterModeRaw + && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + } else if(filter.mode == LdapWizard.filterModeAssisted + && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + } + filter.unlock(); + }, + function (result) { + //on error case get back to default i.e. Assisted + if(!$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + LdapWizard['toggleRaw'+filter.target+'Filter'](); + filter.mode = LdapWizard.filterModeAssisted; + } + filter.unlock(); + } + ); + +} + +LdapFilter.prototype.unlock = function() { + this.locked = false; + if(this.lazyRunCompose) { + this.lazyRunCompose = false; + this.compose(); + } +} diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index 0470ee079f9..57f61b7d680 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -138,108 +138,6 @@ var LdapConfiguration = { } }; - -// LdapFilter object. - -function LdapFilter(target) { - this.locked = true; - this.target = false; - this.mode = LdapWizard.filterModeAssisted; - this.lazyRunCompose = false; - - if( target === 'User' || - target === 'Login' || - target === 'Group') { - this.target = target; - this.determineMode(); - } -} - -LdapFilter.prototype.compose = function() { - var action; - - if(this.locked) { - this.lazyRunCompose = true; - return false; - } - - if(this.target === 'User') { - action = 'getUserListFilter'; - } else if(this.target === 'Login') { - action = 'getUserLoginFilter'; - } else if(this.target === 'Group') { - action = 'getGroupFilter'; - } - - if(!$('#raw'+this.target+'FilterContainer').hasClass('invisible')) { - //Raw filter editing, i.e. user defined filter, don't compose - return; - } - - var param = 'action='+action+ - '&ldap_serverconfig_chooser='+ - encodeURIComponent($('#ldap_serverconfig_chooser').val()); - - var filter = this; - - LdapWizard.ajax(param, - function(result) { - LdapWizard.applyChanges(result); - if(filter.target === 'User') { - LdapWizard.countUsers(); - } else if(filter.target === 'Group') { - LdapWizard.countGroups(); - LdapWizard.detectGroupMemberAssoc(); - } - }, - function (result) { - // error handling - } - ); -} - -LdapFilter.prototype.determineMode = function() { - var param = 'action=get'+encodeURIComponent(this.target)+'FilterMode'+ - '&ldap_serverconfig_chooser='+ - encodeURIComponent($('#ldap_serverconfig_chooser').val()); - - var filter = this; - LdapWizard.ajax(param, - function(result) { - property = 'ldap' + filter.target + 'FilterMode'; - filter.mode = result.changes[property]; - if(filter.mode == LdapWizard.filterModeRaw - && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+filter.target+'Filter'](); - } else if(filter.mode == LdapWizard.filterModeAssisted - && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+filter.target+'Filter'](); - } - filter.unlock(); - }, - function (result) { - //on error case get back to default i.e. Assisted - if(!$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { - LdapWizard['toggleRaw'+filter.target+'Filter'](); - filter.mode = LdapWizard.filterModeAssisted; - } - filter.unlock(); - } - ); - -} - -LdapFilter.prototype.unlock = function() { - this.locked = false; - if(this.lazyRunCompose) { - this.lazyRunCompose = false; - this.compose(); - } -} - -// end of LdapFilter object. - - var LdapWizard = { checkPortInfoShown: false, saveBlacklist: {}, diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index d077eafdde9..6b7d8e6f53e 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -25,6 +25,7 @@ OC_Util::checkAdminUser(); +OCP\Util::addScript('user_ldap', 'ldapFilter'); OCP\Util::addScript('user_ldap', 'settings'); OCP\Util::addScript('core', 'jquery.multiselect'); OCP\Util::addStyle('user_ldap', 'settings'); -- cgit v1.2.3 From 8a8a32cf43efad6fdb2089097cb7fadbe0472456 Mon Sep 17 00:00:00 2001 From: ben-denham Date: Fri, 14 Mar 2014 09:17:39 +1300 Subject: Changed conditions in user_ldap's ldapFilter.js to use ===, fixed indentation. --- apps/user_ldap/js/ldapFilter.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps') diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js index 71f8cd6c7c4..70f24f0d4a5 100644 --- a/apps/user_ldap/js/ldapFilter.js +++ b/apps/user_ldap/js/ldapFilter.js @@ -65,10 +65,10 @@ LdapFilter.prototype.determineMode = function() { function(result) { property = 'ldap' + filter.target + 'FilterMode'; filter.mode = result.changes[property]; - if(filter.mode == LdapWizard.filterModeRaw + if(filter.mode === LdapWizard.filterModeRaw && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); - } else if(filter.mode == LdapWizard.filterModeAssisted + } else if(filter.mode === LdapWizard.filterModeAssisted && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); } @@ -80,7 +80,7 @@ LdapFilter.prototype.determineMode = function() { LdapWizard['toggleRaw'+filter.target+'Filter'](); filter.mode = LdapWizard.filterModeAssisted; } - filter.unlock(); + filter.unlock(); } ); -- cgit v1.2.3 From e28227ecdc0f898868701fe131326d8c15ef60d7 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 11 Apr 2014 13:56:06 +0200 Subject: fix comparison in determineMode, fixes problems with restoring the filter mode (assisted or manually) on page refresh --- apps/user_ldap/js/ldapFilter.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js index 70f24f0d4a5..d0fee6db7fc 100644 --- a/apps/user_ldap/js/ldapFilter.js +++ b/apps/user_ldap/js/ldapFilter.js @@ -64,13 +64,16 @@ LdapFilter.prototype.determineMode = function() { LdapWizard.ajax(param, function(result) { property = 'ldap' + filter.target + 'FilterMode'; - filter.mode = result.changes[property]; + filter.mode = parseInt(result.changes[property]); if(filter.mode === LdapWizard.filterModeRaw && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); } else if(filter.mode === LdapWizard.filterModeAssisted && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); + } else { + console.log('LDAP Wizard determineMode: returned mode was »' + + filter.mode + '« of type ' + typeof filter.mode); } filter.unlock(); }, -- cgit v1.2.3 From 1c57ffa16fab8cfb132978865d819e98cb143a24 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 11 Apr 2014 14:08:12 +0200 Subject: Give hint when composing filter failed --- apps/user_ldap/js/ldapFilter.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js index d0fee6db7fc..0d691647944 100644 --- a/apps/user_ldap/js/ldapFilter.js +++ b/apps/user_ldap/js/ldapFilter.js @@ -50,7 +50,8 @@ LdapFilter.prototype.compose = function() { } }, function (result) { - // error handling + console.log('LDAP Wizard: could not compose filter. '+ + 'Please check owncloud.log'); } ); } -- cgit v1.2.3 From 924aee718cd1be5ef40d40985b4bebee1db12cf2 Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Wed, 16 Apr 2014 14:58:27 +0200 Subject: fix shift of icons in 'New' menu in IE8/9, fix #7987 --- apps/files/css/files.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 1bac5d2b7db..474f1af0720 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -51,7 +51,7 @@ margin: 5px; padding-left: 42px; padding-bottom: 2px; - background-position: initial; + background-position: left center; cursor: pointer; } #new > ul > li > p { -- cgit v1.2.3 From 1c71d5c444a0f4b2263ffb1d2a40969880151015 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 16 Apr 2014 12:56:08 +0200 Subject: LDAP: cache display names immediately on retrieval, saves tens of unecessary queries to LDAP server in the share dialog for example --- apps/user_ldap/lib/access.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'apps') diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 8d622dcb794..d047149fc73 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -434,12 +434,18 @@ class Access extends LDAPUtility { $ocname = $this->dn2ocname($ldapObject['dn'], $nameByLDAP, $isUsers); if($ocname) { $ownCloudNames[] = $ocname; + $this->cacheDisplayName($ocname, $nameByLDAP); } continue; } return $ownCloudNames; } + public function cacheDisplayName($uid, $displayName) { + $cacheKeyTrunk = 'getDisplayName'; + $this->connection->writeToCache($cacheKeyTrunk.$uid,$displayName); + } + /** * @brief creates a unique name for internal ownCloud use for users. Don't call it directly. * @param $name the display name of the object -- cgit v1.2.3 From c1c2f2c49e4d30a7bd039837661af143054b6769 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 16 Apr 2014 17:16:51 +0200 Subject: add additional comments, PHPdoc and check whether it's really applicable --- apps/user_ldap/lib/access.php | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'apps') diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index d047149fc73..aea5026ea66 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -434,16 +434,25 @@ class Access extends LDAPUtility { $ocname = $this->dn2ocname($ldapObject['dn'], $nameByLDAP, $isUsers); if($ocname) { $ownCloudNames[] = $ocname; - $this->cacheDisplayName($ocname, $nameByLDAP); + if($isUsers) { + //cache the user names so it does not need to be retrieved + //again later (e.g. sharing dialogue). + $this->cacheUserDisplayName($ocname, $nameByLDAP); + } } continue; } return $ownCloudNames; } - public function cacheDisplayName($uid, $displayName) { + /** + * @brief caches the user display name + * @param string the internal owncloud username + * @param string the display name + */ + public function cacheUserDisplayName($ocname, $displayName) { $cacheKeyTrunk = 'getDisplayName'; - $this->connection->writeToCache($cacheKeyTrunk.$uid,$displayName); + $this->connection->writeToCache($cacheKeyTrunk.$ocname, $displayName); } /** -- cgit v1.2.3 From 3f453d164143d581d35ebc03bdb940c074098ba9 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Wed, 23 Apr 2014 01:56:35 -0400 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ar.php | 1 - apps/files/l10n/ast.php | 1 - apps/files/l10n/bg_BG.php | 1 - apps/files/l10n/bn_BD.php | 1 - apps/files/l10n/ca.php | 1 - apps/files/l10n/cs_CZ.php | 1 - apps/files/l10n/cy_GB.php | 1 - apps/files/l10n/da.php | 1 - apps/files/l10n/de.php | 1 - apps/files/l10n/de_CH.php | 1 - apps/files/l10n/de_DE.php | 1 - apps/files/l10n/el.php | 1 - apps/files/l10n/en_GB.php | 1 - apps/files/l10n/eo.php | 1 - apps/files/l10n/es.php | 1 - apps/files/l10n/es_AR.php | 1 - apps/files/l10n/es_CL.php | 1 - apps/files/l10n/es_CR.php | 7 + apps/files/l10n/es_MX.php | 1 - apps/files/l10n/et_EE.php | 1 - apps/files/l10n/eu.php | 1 - apps/files/l10n/fa.php | 1 - apps/files/l10n/fi_FI.php | 1 - apps/files/l10n/fr.php | 1 - apps/files/l10n/gl.php | 1 - apps/files/l10n/he.php | 1 - apps/files/l10n/hi.php | 1 - apps/files/l10n/hr.php | 1 - apps/files/l10n/hu_HU.php | 1 - apps/files/l10n/ia.php | 1 - apps/files/l10n/id.php | 1 - apps/files/l10n/is.php | 1 - apps/files/l10n/it.php | 1 - apps/files/l10n/ja.php | 1 - apps/files/l10n/ka_GE.php | 1 - apps/files/l10n/km.php | 1 - apps/files/l10n/ko.php | 1 - apps/files/l10n/ku_IQ.php | 1 - apps/files/l10n/lb.php | 1 - apps/files/l10n/lt_LT.php | 1 - apps/files/l10n/lv.php | 1 - apps/files/l10n/mk.php | 1 - apps/files/l10n/ms_MY.php | 1 - apps/files/l10n/nb_NO.php | 1 - apps/files/l10n/nl.php | 1 - apps/files/l10n/nn_NO.php | 1 - apps/files/l10n/oc.php | 1 - apps/files/l10n/or_IN.php | 7 + apps/files/l10n/pa.php | 1 - apps/files/l10n/pl.php | 1 - apps/files/l10n/pt_BR.php | 1 - apps/files/l10n/pt_PT.php | 1 - apps/files/l10n/ro.php | 1 - apps/files/l10n/ru.php | 1 - apps/files/l10n/si_LK.php | 1 - apps/files/l10n/sk_SK.php | 1 - apps/files/l10n/sl.php | 1 - apps/files/l10n/sq.php | 1 - apps/files/l10n/sr.php | 1 - apps/files/l10n/sr@latin.php | 1 - apps/files/l10n/sv.php | 1 - apps/files/l10n/ta_LK.php | 1 - apps/files/l10n/th_TH.php | 1 - apps/files/l10n/tr.php | 1 - apps/files/l10n/ug.php | 1 - apps/files/l10n/uk.php | 1 - apps/files/l10n/vi.php | 1 - apps/files/l10n/zh_CN.php | 1 - apps/files/l10n/zh_HK.php | 1 - apps/files/l10n/zh_TW.php | 1 - apps/files_encryption/l10n/sk_SK.php | 1 + apps/files_external/l10n/sk_SK.php | 8 + apps/user_ldap/l10n/en_GB.php | 1 + apps/user_ldap/l10n/es_CR.php | 6 + apps/user_ldap/l10n/or_IN.php | 6 + apps/user_ldap/l10n/sk_SK.php | 5 + core/l10n/af_ZA.php | 1 - core/l10n/ar.php | 1 - core/l10n/ast.php | 1 - core/l10n/be.php | 1 - core/l10n/bg_BG.php | 1 - core/l10n/bn_BD.php | 1 - core/l10n/ca.php | 1 - core/l10n/cs_CZ.php | 1 - core/l10n/cy_GB.php | 1 - core/l10n/da.php | 1 - core/l10n/de.php | 1 - core/l10n/de_CH.php | 1 - core/l10n/de_DE.php | 1 - core/l10n/el.php | 1 - core/l10n/en_GB.php | 1 - core/l10n/eo.php | 1 - core/l10n/es.php | 1 - core/l10n/es_AR.php | 1 - core/l10n/es_CL.php | 1 - core/l10n/es_CR.php | 9 + core/l10n/es_MX.php | 1 - core/l10n/et_EE.php | 1 - core/l10n/eu.php | 1 - core/l10n/fa.php | 1 - core/l10n/fi_FI.php | 1 - core/l10n/fr.php | 1 - core/l10n/gl.php | 1 - core/l10n/he.php | 1 - core/l10n/hr.php | 1 - core/l10n/hu_HU.php | 1 - core/l10n/id.php | 1 - core/l10n/is.php | 1 - core/l10n/it.php | 1 - core/l10n/ja.php | 1 - core/l10n/ka_GE.php | 1 - core/l10n/km.php | 1 - core/l10n/ko.php | 1 - core/l10n/lb.php | 1 - core/l10n/lt_LT.php | 1 - core/l10n/lv.php | 1 - core/l10n/mk.php | 1 - core/l10n/nb_NO.php | 1 - core/l10n/nl.php | 1 - core/l10n/nn_NO.php | 1 - core/l10n/oc.php | 1 - core/l10n/or_IN.php | 9 + core/l10n/pa.php | 1 - core/l10n/pl.php | 1 - core/l10n/pt_BR.php | 1 - core/l10n/pt_PT.php | 1 - core/l10n/ro.php | 1 - core/l10n/ru.php | 1 - core/l10n/si_LK.php | 1 - core/l10n/sk_SK.php | 2 +- core/l10n/sl.php | 1 - core/l10n/sq.php | 1 - core/l10n/sr.php | 1 - core/l10n/sr@latin.php | 1 - core/l10n/sv.php | 1 - core/l10n/ta_LK.php | 1 - core/l10n/te.php | 1 - core/l10n/th_TH.php | 1 - core/l10n/tr.php | 1 - core/l10n/uk.php | 1 - core/l10n/vi.php | 1 - core/l10n/zh_CN.php | 1 - core/l10n/zh_HK.php | 1 - core/l10n/zh_TW.php | 1 - l10n/ach/core.po | 106 +++-- l10n/ach/files.po | 53 +-- l10n/ach/settings.po | 6 +- l10n/ady/core.po | 106 +++-- l10n/ady/files.po | 53 +-- l10n/ady/settings.po | 6 +- l10n/af_ZA/core.po | 74 ++-- l10n/af_ZA/files.po | 53 +-- l10n/af_ZA/settings.po | 6 +- l10n/ak/core.po | 106 +++-- l10n/ak/files.po | 53 +-- l10n/ak/settings.po | 6 +- l10n/am_ET/core.po | 106 +++-- l10n/am_ET/files.po | 53 +-- l10n/am_ET/settings.po | 6 +- l10n/ar/core.po | 72 ++- l10n/ar/files.po | 9 +- l10n/ar/settings.po | 8 +- l10n/ast/core.po | 36 +- l10n/ast/files.po | 9 +- l10n/ast/settings.po | 6 +- l10n/az/core.po | 106 +++-- l10n/az/files.po | 53 +-- l10n/az/settings.po | 6 +- l10n/be/core.po | 72 ++- l10n/be/files.po | 7 +- l10n/be/settings.po | 6 +- l10n/bg_BG/core.po | 72 ++- l10n/bg_BG/files.po | 9 +- l10n/bg_BG/settings.po | 6 +- l10n/bn_BD/core.po | 72 ++- l10n/bn_BD/files.po | 9 +- l10n/bn_BD/settings.po | 6 +- l10n/bs/core.po | 106 +++-- l10n/bs/files.po | 53 +-- l10n/bs/settings.po | 6 +- l10n/ca/core.po | 74 ++-- l10n/ca/files.po | 9 +- l10n/ca/settings.po | 10 +- l10n/cs_CZ/core.po | 36 +- l10n/cs_CZ/files.po | 9 +- l10n/cs_CZ/settings.po | 15 +- l10n/cy_GB/core.po | 72 ++- l10n/cy_GB/files.po | 9 +- l10n/cy_GB/settings.po | 6 +- l10n/da/core.po | 72 ++- l10n/da/files.po | 9 +- l10n/da/settings.po | 8 +- l10n/de/core.po | 72 ++- l10n/de/files.po | 9 +- l10n/de/settings.po | 10 +- l10n/de_AT/core.po | 106 +++-- l10n/de_AT/files.po | 53 +-- l10n/de_AT/settings.po | 6 +- l10n/de_CH/core.po | 72 ++- l10n/de_CH/files.po | 9 +- l10n/de_CH/settings.po | 6 +- l10n/de_DE/core.po | 72 ++- l10n/de_DE/files.po | 9 +- l10n/de_DE/settings.po | 10 +- l10n/el/core.po | 36 +- l10n/el/files.po | 11 +- l10n/el/settings.po | 10 +- l10n/en@pirate/core.po | 106 +++-- l10n/en@pirate/files.po | 53 +-- l10n/en@pirate/settings.po | 6 +- l10n/en_GB/core.po | 74 ++-- l10n/en_GB/files.po | 9 +- l10n/en_GB/lib.po | 42 +- l10n/en_GB/settings.po | 14 +- l10n/en_GB/user_ldap.po | 8 +- l10n/eo/core.po | 72 ++- l10n/eo/files.po | 9 +- l10n/eo/settings.po | 6 +- l10n/es/core.po | 74 ++-- l10n/es/files.po | 9 +- l10n/es/settings.po | 10 +- l10n/es_AR/core.po | 72 ++- l10n/es_AR/files.po | 9 +- l10n/es_AR/settings.po | 8 +- l10n/es_CL/core.po | 72 ++- l10n/es_CL/files.po | 9 +- l10n/es_CL/settings.po | 6 +- l10n/es_CR/core.po | 805 +++++++++++++++++++++++++++++++++ l10n/es_CR/files.po | 409 +++++++++++++++++ l10n/es_CR/files_encryption.po | 201 +++++++++ l10n/es_CR/files_external.po | 136 ++++++ l10n/es_CR/files_sharing.po | 72 +++ l10n/es_CR/files_trashbin.po | 64 +++ l10n/es_CR/files_versions.po | 43 ++ l10n/es_CR/lib.po | 356 +++++++++++++++ l10n/es_CR/settings.po | 838 +++++++++++++++++++++++++++++++++++ l10n/es_CR/user_ldap.po | 534 ++++++++++++++++++++++ l10n/es_CR/user_webdavauth.po | 33 ++ l10n/es_MX/core.po | 72 ++- l10n/es_MX/files.po | 9 +- l10n/es_MX/settings.po | 8 +- l10n/et_EE/core.po | 72 ++- l10n/et_EE/files.po | 9 +- l10n/et_EE/settings.po | 8 +- l10n/eu/core.po | 72 ++- l10n/eu/files.po | 9 +- l10n/eu/settings.po | 8 +- l10n/eu_ES/core.po | 106 +++-- l10n/eu_ES/files.po | 53 +-- l10n/eu_ES/settings.po | 6 +- l10n/fa/core.po | 72 ++- l10n/fa/files.po | 9 +- l10n/fa/settings.po | 8 +- l10n/fi_FI/core.po | 74 ++-- l10n/fi_FI/files.po | 9 +- l10n/fi_FI/settings.po | 10 +- l10n/fr/core.po | 74 ++-- l10n/fr/files.po | 9 +- l10n/fr/settings.po | 10 +- l10n/fr_CA/core.po | 106 +++-- l10n/fr_CA/files.po | 53 +-- l10n/fr_CA/settings.po | 6 +- l10n/gl/core.po | 36 +- l10n/gl/files.po | 9 +- l10n/gl/settings.po | 10 +- l10n/he/core.po | 72 ++- l10n/he/files.po | 9 +- l10n/he/settings.po | 6 +- l10n/hi/core.po | 72 ++- l10n/hi/files.po | 9 +- l10n/hi/settings.po | 6 +- l10n/hr/core.po | 72 ++- l10n/hr/files.po | 9 +- l10n/hr/settings.po | 6 +- l10n/hu_HU/core.po | 72 ++- l10n/hu_HU/files.po | 9 +- l10n/hu_HU/settings.po | 8 +- l10n/hy/core.po | 106 +++-- l10n/hy/files.po | 53 +-- l10n/hy/settings.po | 6 +- l10n/ia/core.po | 72 ++- l10n/ia/files.po | 9 +- l10n/ia/settings.po | 6 +- l10n/id/core.po | 72 ++- l10n/id/files.po | 9 +- l10n/id/settings.po | 8 +- l10n/is/core.po | 72 ++- l10n/is/files.po | 9 +- l10n/is/settings.po | 6 +- l10n/it/core.po | 74 ++-- l10n/it/files.po | 9 +- l10n/it/settings.po | 10 +- l10n/ja/core.po | 72 ++- l10n/ja/files.po | 9 +- l10n/ja/settings.po | 8 +- l10n/jv/core.po | 106 +++-- l10n/jv/files.po | 53 +-- l10n/jv/settings.po | 6 +- l10n/ka_GE/core.po | 72 ++- l10n/ka_GE/files.po | 9 +- l10n/ka_GE/settings.po | 6 +- l10n/km/core.po | 72 ++- l10n/km/files.po | 9 +- l10n/km/settings.po | 6 +- l10n/kn/core.po | 106 +++-- l10n/kn/files.po | 53 +-- l10n/kn/settings.po | 6 +- l10n/ko/core.po | 72 ++- l10n/ko/files.po | 9 +- l10n/ko/settings.po | 8 +- l10n/ku_IQ/core.po | 72 ++- l10n/ku_IQ/files.po | 9 +- l10n/ku_IQ/settings.po | 6 +- l10n/lb/core.po | 72 ++- l10n/lb/files.po | 9 +- l10n/lb/settings.po | 6 +- l10n/lt_LT/core.po | 72 ++- l10n/lt_LT/files.po | 9 +- l10n/lt_LT/settings.po | 8 +- l10n/lv/core.po | 72 ++- l10n/lv/files.po | 9 +- l10n/lv/settings.po | 6 +- l10n/mk/core.po | 72 ++- l10n/mk/files.po | 9 +- l10n/mk/settings.po | 8 +- l10n/ml/core.po | 106 +++-- l10n/ml/files.po | 53 +-- l10n/ml/settings.po | 6 +- l10n/ml_IN/core.po | 106 +++-- l10n/ml_IN/files.po | 53 +-- l10n/ml_IN/settings.po | 6 +- l10n/mn/core.po | 106 +++-- l10n/mn/files.po | 53 +-- l10n/mn/settings.po | 6 +- l10n/ms_MY/core.po | 72 ++- l10n/ms_MY/files.po | 9 +- l10n/ms_MY/settings.po | 6 +- l10n/my_MM/core.po | 106 +++-- l10n/my_MM/files.po | 53 +-- l10n/my_MM/settings.po | 6 +- l10n/nb_NO/core.po | 72 ++- l10n/nb_NO/files.po | 9 +- l10n/nb_NO/settings.po | 8 +- l10n/nds/core.po | 106 +++-- l10n/nds/files.po | 53 +-- l10n/nds/settings.po | 6 +- l10n/ne/core.po | 106 +++-- l10n/ne/files.po | 53 +-- l10n/ne/settings.po | 6 +- l10n/nl/core.po | 74 ++-- l10n/nl/files.po | 9 +- l10n/nl/settings.po | 10 +- l10n/nn_NO/core.po | 72 ++- l10n/nn_NO/files.po | 9 +- l10n/nn_NO/settings.po | 6 +- l10n/nqo/core.po | 106 +++-- l10n/nqo/files.po | 53 +-- l10n/nqo/settings.po | 6 +- l10n/oc/core.po | 72 ++- l10n/oc/files.po | 9 +- l10n/oc/settings.po | 6 +- l10n/or_IN/core.po | 805 +++++++++++++++++++++++++++++++++ l10n/or_IN/files.po | 409 +++++++++++++++++ l10n/or_IN/files_encryption.po | 201 +++++++++ l10n/or_IN/files_external.po | 136 ++++++ l10n/or_IN/files_sharing.po | 72 +++ l10n/or_IN/files_trashbin.po | 64 +++ l10n/or_IN/files_versions.po | 43 ++ l10n/or_IN/lib.po | 356 +++++++++++++++ l10n/or_IN/settings.po | 838 +++++++++++++++++++++++++++++++++++ l10n/or_IN/user_ldap.po | 534 ++++++++++++++++++++++ l10n/or_IN/user_webdavauth.po | 33 ++ l10n/pa/core.po | 72 ++- l10n/pa/files.po | 9 +- l10n/pa/settings.po | 6 +- l10n/pl/core.po | 74 ++-- l10n/pl/files.po | 9 +- l10n/pl/settings.po | 10 +- l10n/pt_BR/core.po | 74 ++-- l10n/pt_BR/files.po | 9 +- l10n/pt_BR/lib.po | 42 +- l10n/pt_BR/settings.po | 10 +- l10n/pt_PT/core.po | 72 ++- l10n/pt_PT/files.po | 9 +- l10n/pt_PT/settings.po | 8 +- l10n/ro/core.po | 72 ++- l10n/ro/files.po | 9 +- l10n/ro/settings.po | 6 +- l10n/ru/core.po | 72 ++- l10n/ru/files.po | 9 +- l10n/ru/settings.po | 8 +- l10n/si_LK/core.po | 72 ++- l10n/si_LK/files.po | 9 +- l10n/si_LK/settings.po | 6 +- l10n/sk/core.po | 106 +++-- l10n/sk/files.po | 53 +-- l10n/sk/settings.po | 6 +- l10n/sk_SK/core.po | 74 ++-- l10n/sk_SK/files.po | 11 +- l10n/sk_SK/files_encryption.po | 52 +-- l10n/sk_SK/files_external.po | 34 +- l10n/sk_SK/settings.po | 8 +- l10n/sk_SK/user_ldap.po | 16 +- l10n/sl/core.po | 36 +- l10n/sl/files.po | 9 +- l10n/sl/settings.po | 14 +- l10n/sq/core.po | 72 ++- l10n/sq/files.po | 9 +- l10n/sq/settings.po | 6 +- l10n/sr/core.po | 72 ++- l10n/sr/files.po | 9 +- l10n/sr/settings.po | 6 +- l10n/sr@latin/core.po | 72 ++- l10n/sr@latin/files.po | 9 +- l10n/sr@latin/settings.po | 6 +- l10n/su/core.po | 106 +++-- l10n/su/files.po | 53 +-- l10n/su/settings.po | 6 +- l10n/sv/core.po | 74 ++-- l10n/sv/files.po | 11 +- l10n/sv/settings.po | 10 +- l10n/sw_KE/core.po | 106 +++-- l10n/sw_KE/files.po | 53 +-- l10n/sw_KE/settings.po | 6 +- l10n/ta_LK/core.po | 72 ++- l10n/ta_LK/files.po | 9 +- l10n/ta_LK/settings.po | 6 +- l10n/te/core.po | 72 ++- l10n/te/files.po | 7 +- l10n/te/settings.po | 6 +- l10n/templates/core.pot | 32 +- l10n/templates/files.pot | 5 +- l10n/templates/files_encryption.pot | 2 +- l10n/templates/files_external.pot | 2 +- l10n/templates/files_sharing.pot | 2 +- l10n/templates/files_trashbin.pot | 10 +- l10n/templates/files_versions.pot | 2 +- l10n/templates/lib.pot | 2 +- l10n/templates/private.pot | 2 +- l10n/templates/settings.pot | 4 +- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/core.po | 72 ++- l10n/th_TH/files.po | 9 +- l10n/th_TH/settings.po | 6 +- l10n/tr/core.po | 36 +- l10n/tr/files.po | 11 +- l10n/tr/settings.po | 10 +- l10n/tzm/core.po | 106 +++-- l10n/tzm/files.po | 53 +-- l10n/tzm/settings.po | 6 +- l10n/ug/core.po | 72 ++- l10n/ug/files.po | 9 +- l10n/ug/settings.po | 6 +- l10n/uk/core.po | 72 ++- l10n/uk/files.po | 11 +- l10n/uk/settings.po | 8 +- l10n/ur/core.po | 106 +++-- l10n/ur/files.po | 53 +-- l10n/ur/settings.po | 6 +- l10n/ur_PK/core.po | 72 ++- l10n/ur_PK/files.po | 7 +- l10n/ur_PK/settings.po | 6 +- l10n/uz/core.po | 106 +++-- l10n/uz/files.po | 53 +-- l10n/uz/settings.po | 6 +- l10n/vi/core.po | 72 ++- l10n/vi/files.po | 9 +- l10n/vi/settings.po | 6 +- l10n/zh_CN/core.po | 34 +- l10n/zh_CN/files.po | 9 +- l10n/zh_CN/settings.po | 8 +- l10n/zh_HK/core.po | 72 ++- l10n/zh_HK/files.po | 9 +- l10n/zh_HK/settings.po | 6 +- l10n/zh_TW/core.po | 72 ++- l10n/zh_TW/files.po | 9 +- l10n/zh_TW/settings.po | 8 +- lib/l10n/es_CR.php | 8 + lib/l10n/or_IN.php | 8 + settings/l10n/ar.php | 1 - settings/l10n/ca.php | 1 - settings/l10n/cs_CZ.php | 3 +- settings/l10n/da.php | 1 - settings/l10n/de.php | 1 - settings/l10n/de_DE.php | 1 - settings/l10n/el.php | 1 - settings/l10n/en_GB.php | 4 +- settings/l10n/es.php | 1 - settings/l10n/es_AR.php | 1 - settings/l10n/es_MX.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/hu_HU.php | 1 - settings/l10n/id.php | 1 - settings/l10n/it.php | 1 - settings/l10n/ja.php | 1 - settings/l10n/ko.php | 1 - settings/l10n/lt_LT.php | 1 - settings/l10n/mk.php | 1 - settings/l10n/nb_NO.php | 1 - settings/l10n/nl.php | 1 - settings/l10n/pl.php | 1 - settings/l10n/pt_BR.php | 1 - settings/l10n/pt_PT.php | 1 - settings/l10n/ru.php | 1 - settings/l10n/sk_SK.php | 1 - settings/l10n/sl.php | 4 +- settings/l10n/sv.php | 1 - settings/l10n/tr.php | 1 - settings/l10n/zh_CN.php | 1 - settings/l10n/zh_TW.php | 1 - 516 files changed, 12295 insertions(+), 5695 deletions(-) create mode 100644 apps/files/l10n/es_CR.php create mode 100644 apps/files/l10n/or_IN.php create mode 100644 apps/user_ldap/l10n/es_CR.php create mode 100644 apps/user_ldap/l10n/or_IN.php create mode 100644 core/l10n/es_CR.php create mode 100644 core/l10n/or_IN.php create mode 100644 l10n/es_CR/core.po create mode 100644 l10n/es_CR/files.po create mode 100644 l10n/es_CR/files_encryption.po create mode 100644 l10n/es_CR/files_external.po create mode 100644 l10n/es_CR/files_sharing.po create mode 100644 l10n/es_CR/files_trashbin.po create mode 100644 l10n/es_CR/files_versions.po create mode 100644 l10n/es_CR/lib.po create mode 100644 l10n/es_CR/settings.po create mode 100644 l10n/es_CR/user_ldap.po create mode 100644 l10n/es_CR/user_webdavauth.po create mode 100644 l10n/or_IN/core.po create mode 100644 l10n/or_IN/files.po create mode 100644 l10n/or_IN/files_encryption.po create mode 100644 l10n/or_IN/files_external.po create mode 100644 l10n/or_IN/files_sharing.po create mode 100644 l10n/or_IN/files_trashbin.po create mode 100644 l10n/or_IN/files_versions.po create mode 100644 l10n/or_IN/lib.po create mode 100644 l10n/or_IN/settings.po create mode 100644 l10n/or_IN/user_ldap.po create mode 100644 l10n/or_IN/user_webdavauth.po create mode 100644 lib/l10n/es_CR.php create mode 100644 lib/l10n/or_IN.php (limited to 'apps') diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index e7c081b1c47..9a78e3bbff3 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -44,7 +44,6 @@ $TRANSLATIONS = array( "Size" => "حجم", "Modified" => "معدل", "%s could not be renamed" => "%s لا يمكن إعادة تسميته. ", -"Upload" => "رفع", "File handling" => "التعامل مع الملف", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", "max. possible: " => "الحد الأقصى المسموح به", diff --git a/apps/files/l10n/ast.php b/apps/files/l10n/ast.php index c0b32e8e0cb..5c6af60be3d 100644 --- a/apps/files/l10n/ast.php +++ b/apps/files/l10n/ast.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "Nome", "Size" => "Tamañu", -"Upload" => "Xubir", "Save" => "Guardar", "New folder" => "Nueva carpeta", "Folder" => "Carpeta", diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index 2418010cdd9..d9cad21e79e 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -20,7 +20,6 @@ $TRANSLATIONS = array( "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", -"Upload" => "Качване", "Maximum upload size" => "Максимален размер за качване", "0 is unlimited" => "Ползвайте 0 за без ограничения", "Save" => "Запис", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 667a68bb627..4d71d7dacd3 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "Name" => "রাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", -"Upload" => "আপলোড", "File handling" => "ফাইল হ্যার্ডলিং", "Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", "max. possible: " => "অনুমোদিত সর্বোচ্চ আকার", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 8ef9b764484..e93f1b644a4 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificat", "Invalid folder name. Usage of 'Shared' is reserved." => "Nom de carpeta no vàlid. L'ús de 'Shared' és reservat", "%s could not be renamed" => "%s no es pot canviar el nom", -"Upload" => "Puja", "File handling" => "Gestió de fitxers", "Maximum upload size" => "Mida màxima de pujada", "max. possible: " => "màxim possible:", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 8aea17a7051..e999a58ec61 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Upraveno", "Invalid folder name. Usage of 'Shared' is reserved." => "Neplatný název složky. Použití 'Shared' je rezervováno.", "%s could not be renamed" => "%s nemůže být přejmenován", -"Upload" => "Odeslat", "File handling" => "Zacházení se soubory", "Maximum upload size" => "Maximální velikost pro odesílání", "max. possible: " => "největší možná: ", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index b27e4c3bfc2..f0c12b2fdeb 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "Enw", "Size" => "Maint", "Modified" => "Addaswyd", -"Upload" => "Llwytho i fyny", "File handling" => "Trafod ffeiliau", "Maximum upload size" => "Maint mwyaf llwytho i fyny", "max. possible: " => "mwyaf. posib:", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 6a7ea4745cc..522ec8dff87 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Ændret", "Invalid folder name. Usage of 'Shared' is reserved." => "Ugyldig mappenavn. 'Shared' er reserveret.", "%s could not be renamed" => "%s kunne ikke omdøbes", -"Upload" => "Upload", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimal upload-størrelse", "max. possible: " => "max. mulige: ", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 401ee243f28..c1f5f3a9367 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", -"Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/de_CH.php b/apps/files/l10n/de_CH.php index f797be99e98..907b9e1b67e 100644 --- a/apps/files/l10n/de_CH.php +++ b/apps/files/l10n/de_CH.php @@ -36,7 +36,6 @@ $TRANSLATIONS = array( "Size" => "Grösse", "Modified" => "Geändert", "%s could not be renamed" => "%s konnte nicht umbenannt werden", -"Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Grösse", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 4768faa97da..83d8c253eeb 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", -"Upload" => "Hochladen", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index cf2022c2d7f..90d73cb411d 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Τροποποιήθηκε", "Invalid folder name. Usage of 'Shared' is reserved." => "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα.", "%s could not be renamed" => "Αδυναμία μετονομασίας του %s", -"Upload" => "Μεταφόρτωση", "File handling" => "Διαχείριση αρχείων", "Maximum upload size" => "Μέγιστο μέγεθος αποστολής", "max. possible: " => "μέγιστο δυνατό:", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index 705f6b99b0b..d57f9434535 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modified", "Invalid folder name. Usage of 'Shared' is reserved." => "Invalid folder name. Usage of 'Shared' is reserved.", "%s could not be renamed" => "%s could not be renamed", -"Upload" => "Upload", "File handling" => "File handling", "Maximum upload size" => "Maximum upload size", "max. possible: " => "max. possible: ", diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index a6e0d553177..dfa6f7ec038 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -50,7 +50,6 @@ $TRANSLATIONS = array( "Size" => "Grando", "Modified" => "Modifita", "%s could not be renamed" => "%s ne povis alinomiĝi", -"Upload" => "Alŝuti", "File handling" => "Dosieradministro", "Maximum upload size" => "Maksimuma alŝutogrando", "max. possible: " => "maks. ebla: ", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 10a378c371b..5ea572956ec 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", "%s could not be renamed" => "%s no pudo ser renombrado", -"Upload" => "Subir", "File handling" => "Administración de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index f78615fc923..19a71e0c9a0 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de directorio inválido. 'Shared' está reservado.", "%s could not be renamed" => "No se pudo renombrar %s", -"Upload" => "Subir", "File handling" => "Tratamiento de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/es_CL.php b/apps/files/l10n/es_CL.php index 8e051d1c389..98606b4cd88 100644 --- a/apps/files/l10n/es_CL.php +++ b/apps/files/l10n/es_CL.php @@ -6,7 +6,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Upload" => "Subir", "Download" => "Descargar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_CR.php b/apps/files/l10n/es_CR.php new file mode 100644 index 00000000000..0157af093e9 --- /dev/null +++ b/apps/files/l10n/es_CR.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_MX.php b/apps/files/l10n/es_MX.php index ea7db0d7b9c..a55a70c1667 100644 --- a/apps/files/l10n/es_MX.php +++ b/apps/files/l10n/es_MX.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", "%s could not be renamed" => "%s no pudo ser renombrado", -"Upload" => "Subir", "File handling" => "Administración de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index 4f0614feb5e..ec7c4af85be 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Muudetud", "Invalid folder name. Usage of 'Shared' is reserved." => "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud.", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", -"Upload" => "Lae üles", "File handling" => "Failide käsitlemine", "Maximum upload size" => "Maksimaalne üleslaadimise suurus", "max. possible: " => "maks. võimalik: ", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index d59dd396283..26e2a34e4a5 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Aldatuta", "Invalid folder name. Usage of 'Shared' is reserved." => "Baliogabeako karpeta izena. 'Shared' izena erreserbatuta dago.", "%s could not be renamed" => "%s ezin da berrizendatu", -"Upload" => "Igo", "File handling" => "Fitxategien kudeaketa", "Maximum upload size" => "Igo daitekeen gehienezko tamaina", "max. possible: " => "max, posiblea:", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 2e8f6255e24..4d2a929195f 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Size" => "اندازه", "Modified" => "تاریخ", "%s could not be renamed" => "%s نمیتواند تغییر نام دهد.", -"Upload" => "بارگزاری", "File handling" => "اداره پرونده ها", "Maximum upload size" => "حداکثر اندازه بارگزاری", "max. possible: " => "حداکثرمقدارممکن:", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index b6383c144de..530a68e5369 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -60,7 +60,6 @@ $TRANSLATIONS = array( "Modified" => "Muokattu", "Invalid folder name. Usage of 'Shared' is reserved." => "Virheellinen kansion nimi. 'Shared':n käyttö on varattu.", "%s could not be renamed" => "kohteen %s nimeäminen uudelleen epäonnistui", -"Upload" => "Lähetä", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", "max. possible: " => "suurin mahdollinen:", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 0eed6a70f91..0ae5180b664 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modifié", "Invalid folder name. Usage of 'Shared' is reserved." => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée.", "%s could not be renamed" => "%s ne peut être renommé", -"Upload" => "Envoyer", "File handling" => "Gestion des fichiers", "Maximum upload size" => "Taille max. d'envoi", "max. possible: " => "Max. possible :", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 9fe6546de51..18e0481a2a3 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome de cartafol non válido. O uso de «Shared» está reservado.", "%s could not be renamed" => "%s non pode cambiar de nome", -"Upload" => "Enviar", "File handling" => "Manexo de ficheiro", "Maximum upload size" => "Tamaño máximo do envío", "max. possible: " => "máx. posíbel: ", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index ab8640a91d1..6279e675db2 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "שם", "Size" => "גודל", "Modified" => "זמן שינוי", -"Upload" => "העלאה", "File handling" => "טיפול בקבצים", "Maximum upload size" => "גודל העלאה מקסימלי", "max. possible: " => "המרבי האפשרי: ", diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index b4234b51376..13fded26719 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -5,7 +5,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Upload" => "अपलोड ", "Save" => "सहेजें" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index ef978e6cfb7..0876dcdd1ec 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja promjena", -"Upload" => "Učitaj", "File handling" => "datoteka za rukovanje", "Maximum upload size" => "Maksimalna veličina prijenosa", "max. possible: " => "maksimalna moguća: ", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index e4ab355c9b1..0f9a903e2b8 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Módosítva", "Invalid folder name. Usage of 'Shared' is reserved." => "Érvénytelen mappanév. A 'Shared' a rendszer számára fenntartott elnevezés.", "%s could not be renamed" => "%s átnevezése nem sikerült", -"Upload" => "Feltöltés", "File handling" => "Fájlkezelés", "Maximum upload size" => "Maximális feltölthető fájlméret", "max. possible: " => "max. lehetséges: ", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index 420e48395c7..da1cafaa293 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -12,7 +12,6 @@ $TRANSLATIONS = array( "Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", -"Upload" => "Incargar", "Maximum upload size" => "Dimension maxime de incargamento", "Save" => "Salveguardar", "New" => "Nove", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 8356c5465eb..40699ba886e 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -57,7 +57,6 @@ $TRANSLATIONS = array( "Modified" => "Dimodifikasi", "Invalid folder name. Usage of 'Shared' is reserved." => "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan.", "%s could not be renamed" => "%s tidak dapat diubah nama", -"Upload" => "Unggah", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran pengunggahan maksimum", "max. possible: " => "Kemungkinan maks.:", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 00503028e0e..b8e23b6a300 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "Name" => "Nafn", "Size" => "Stærð", "Modified" => "Breytt", -"Upload" => "Senda inn", "File handling" => "Meðhöndlun skrár", "Maximum upload size" => "Hámarks stærð innsendingar", "max. possible: " => "hámark mögulegt: ", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 9539496a3fc..64abf0bfed9 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificato", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome della cartella non valido. L'uso di 'Shared' è riservato.", "%s could not be renamed" => "%s non può essere rinominato", -"Upload" => "Carica", "File handling" => "Gestione file", "Maximum upload size" => "Dimensione massima upload", "max. possible: " => "numero mass.: ", diff --git a/apps/files/l10n/ja.php b/apps/files/l10n/ja.php index dd8d4e4e3f6..7606a8d4b16 100644 --- a/apps/files/l10n/ja.php +++ b/apps/files/l10n/ja.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "更新日時", "Invalid folder name. Usage of 'Shared' is reserved." => "無効なフォルダー名。「Shared」の利用は予約されています。", "%s could not be renamed" => "%sの名前を変更できませんでした", -"Upload" => "アップロード", "File handling" => "ファイル操作", "Maximum upload size" => "最大アップロードサイズ", "max. possible: " => "最大容量: ", diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index f9749d72bb4..ad3a4bff1f1 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "სახელი", "Size" => "ზომა", "Modified" => "შეცვლილია", -"Upload" => "ატვირთვა", "File handling" => "ფაილის დამუშავება", "Maximum upload size" => "მაქსიმუმ ატვირთის ზომა", "max. possible: " => "მაქს. შესაძლებელი:", diff --git a/apps/files/l10n/km.php b/apps/files/l10n/km.php index a7a01ccab9d..30bb2998afa 100644 --- a/apps/files/l10n/km.php +++ b/apps/files/l10n/km.php @@ -8,7 +8,6 @@ $TRANSLATIONS = array( "_Uploading %n file_::_Uploading %n files_" => array(""), "Name" => "ឈ្មោះ", "Size" => "ទំហំ", -"Upload" => "ផ្ទុក​ឡើង", "Save" => "រក្សាទុក", "New folder" => "ថត​ថ្មី", "Folder" => "ថត", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index c0f0d7d4454..3c8a72097f2 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "수정됨", "Invalid folder name. Usage of 'Shared' is reserved." => "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다.", "%s could not be renamed" => "%s의 이름을 변경할 수 없습니다", -"Upload" => "업로드", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", "max. possible: " => "최대 가능:", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index 6ec5819d380..1c9d615ee7e 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "ناو", -"Upload" => "بارکردن", "Save" => "پاشکه‌وتکردن", "Folder" => "بوخچه", "Download" => "داگرتن" diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 38b5d672d02..27dc936600b 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -18,7 +18,6 @@ $TRANSLATIONS = array( "Name" => "Numm", "Size" => "Gréisst", "Modified" => "Geännert", -"Upload" => "Eroplueden", "File handling" => "Fichier handling", "Maximum upload size" => "Maximum Upload Gréisst ", "max. possible: " => "max. méiglech:", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 50097e5f362..fee09cf2d8b 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Pakeista", "Invalid folder name. Usage of 'Shared' is reserved." => "Netinkamas aplanko pavadinimas. „Shared“ pavadinimas yra rezervuotas.", "%s could not be renamed" => "%s negali būti pervadintas", -"Upload" => "Įkelti", "File handling" => "Failų tvarkymas", "Maximum upload size" => "Maksimalus įkeliamo failo dydis", "max. possible: " => "maks. galima:", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index fcb1a59aa38..71f3976816d 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -36,7 +36,6 @@ $TRANSLATIONS = array( "Size" => "Izmērs", "Modified" => "Mainīts", "%s could not be renamed" => "%s nevar tikt pārsaukts", -"Upload" => "Augšupielādēt", "File handling" => "Datņu pārvaldība", "Maximum upload size" => "Maksimālais datņu augšupielādes apjoms", "max. possible: " => "maksimālais iespējamais:", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index fa6efd1aff3..c303e51511b 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -49,7 +49,6 @@ $TRANSLATIONS = array( "Size" => "Големина", "Modified" => "Променето", "%s could not be renamed" => "%s не може да биде преименуван", -"Upload" => "Подигни", "File handling" => "Ракување со датотеки", "Maximum upload size" => "Максимална големина за подигање", "max. possible: " => "макс. можно:", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index df0054c3d00..af42a3838b6 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "Nama", "Size" => "Saiz", "Modified" => "Dimodifikasi", -"Upload" => "Muat naik", "File handling" => "Pengendalian fail", "Maximum upload size" => "Saiz maksimum muat naik", "max. possible: " => "maksimum:", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index f1e2c2edeeb..878d4df8221 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Endret", "Invalid folder name. Usage of 'Shared' is reserved." => "Ulovlig mappenavn. Bruken av 'Shared' er reservert.", "%s could not be renamed" => "Kunne ikke gi nytt navn til %s", -"Upload" => "Last opp", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimum opplastingsstørrelse", "max. possible: " => "max. mulige:", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 946c7905b23..779a651602d 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Aangepast", "Invalid folder name. Usage of 'Shared' is reserved." => "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd.", "%s could not be renamed" => "%s kon niet worden hernoemd", -"Upload" => "Uploaden", "File handling" => "Bestand", "Maximum upload size" => "Maximale bestandsgrootte voor uploads", "max. possible: " => "max. mogelijk: ", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index bd17fa3386a..693bfccb093 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -42,7 +42,6 @@ $TRANSLATIONS = array( "Size" => "Storleik", "Modified" => "Endra", "%s could not be renamed" => "Klarte ikkje å omdøypa på %s", -"Upload" => "Last opp", "File handling" => "Filhandtering", "Maximum upload size" => "Maksimal opplastingsstorleik", "max. possible: " => "maks. moglege:", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index 7a24c81974e..f3d790a533f 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Talha", "Modified" => "Modificat", -"Upload" => "Amontcarga", "File handling" => "Manejament de fichièr", "Maximum upload size" => "Talha maximum d'amontcargament", "max. possible: " => "max. possible: ", diff --git a/apps/files/l10n/or_IN.php b/apps/files/l10n/or_IN.php new file mode 100644 index 00000000000..0157af093e9 --- /dev/null +++ b/apps/files/l10n/or_IN.php @@ -0,0 +1,7 @@ + array("",""), +"_%n file_::_%n files_" => array("",""), +"_Uploading %n file_::_Uploading %n files_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/pa.php b/apps/files/l10n/pa.php index b18d2071e08..3cf87242491 100644 --- a/apps/files/l10n/pa.php +++ b/apps/files/l10n/pa.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), -"Upload" => "ਅੱਪਲੋਡ", "Cancel upload" => "ਅੱਪਲੋਡ ਰੱਦ ਕਰੋ", "Download" => "ਡਾਊਨਲੋਡ", "Delete" => "ਹਟਾਓ" diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 83126b3ea03..5a5b057e633 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modyfikacja", "Invalid folder name. Usage of 'Shared' is reserved." => "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane.", "%s could not be renamed" => "%s nie można zmienić nazwy", -"Upload" => "Wyślij", "File handling" => "Zarządzanie plikami", "Maximum upload size" => "Maksymalny rozmiar wysyłanego pliku", "max. possible: " => "maks. możliwy:", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 48c32e8887f..35d2d551703 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome da pasta inválido. Uso de 'Shared' é reservado.", "%s could not be renamed" => "%s não pode ser renomeado", -"Upload" => "Upload", "File handling" => "Tratamento de Arquivo", "Maximum upload size" => "Tamanho máximo para carregar", "max. possible: " => "max. possível:", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 0afb6b50157..8c58c6458c0 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome de pasta inválido. Utilização de \"Partilhado\" está reservada.", "%s could not be renamed" => "%s não pode ser renomeada", -"Upload" => "Carregar", "File handling" => "Manuseamento de ficheiros", "Maximum upload size" => "Tamanho máximo de envio", "max. possible: " => "max. possivel: ", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 6cda724df43..998e58375e7 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -50,7 +50,6 @@ $TRANSLATIONS = array( "Size" => "Mărime", "Modified" => "Modificat", "%s could not be renamed" => "%s nu a putut fi redenumit", -"Upload" => "Încărcă", "File handling" => "Manipulare fișiere", "Maximum upload size" => "Dimensiune maximă admisă la încărcare", "max. possible: " => "max. posibil:", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 17f06c6a200..4586a73dc3c 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Дата изменения", "Invalid folder name. Usage of 'Shared' is reserved." => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", "%s could not be renamed" => "%s не может быть переименован", -"Upload" => "Загрузка", "File handling" => "Управление файлами", "Maximum upload size" => "Максимальный размер загружаемого файла", "max. possible: " => "макс. возможно: ", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index a2809ee2f5d..ff6672f7112 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "Name" => "නම", "Size" => "ප්‍රමාණය", "Modified" => "වෙනස් කළ", -"Upload" => "උඩුගත කරන්න", "File handling" => "ගොනු පරිහරණය", "Maximum upload size" => "උඩුගත කිරීමක උපරිම ප්‍රමාණය", "max. possible: " => "හැකි උපරිමය:", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index cffb89c294d..2e079b4ce78 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Upravené", "Invalid folder name. Usage of 'Shared' is reserved." => "Názov priečinka je chybný. Použitie názvu 'Shared' nie je povolené.", "%s could not be renamed" => "%s nemohol byť premenovaný", -"Upload" => "Odoslať", "File handling" => "Nastavenie správania sa k súborom", "Maximum upload size" => "Maximálna veľkosť odosielaného súboru", "max. possible: " => "najväčšie možné:", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index fcb358bd7bd..fbd667226c0 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Spremenjeno", "Invalid folder name. Usage of 'Shared' is reserved." => "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo.", "%s could not be renamed" => "%s ni mogoče preimenovati", -"Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", "Maximum upload size" => "Največja velikost za pošiljanja", "max. possible: " => "največ mogoče:", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index ade4f769faa..a7f1cb34133 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Size" => "Madhësia", "Modified" => "Ndryshuar", "%s could not be renamed" => "Nuk është i mundur riemërtimi i %s", -"Upload" => "Ngarko", "File handling" => "Trajtimi i Skedarëve", "Maximum upload size" => "Madhësia maksimale e nagarkimit", "max. possible: " => "maks i mundshëm", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 44669e8167a..866d8dbdd03 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "Name" => "Име", "Size" => "Величина", "Modified" => "Измењено", -"Upload" => "Отпреми", "File handling" => "Управљање датотекама", "Maximum upload size" => "Највећа величина датотеке", "max. possible: " => "највећа величина:", diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index a5c74860f78..38039a19fc1 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -15,7 +15,6 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja izmena", -"Upload" => "Pošalji", "Maximum upload size" => "Maksimalna veličina pošiljke", "Save" => "Snimi", "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index f420216228c..811e568fefc 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Ändrad", "Invalid folder name. Usage of 'Shared' is reserved." => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud", "%s could not be renamed" => "%s kunde inte namnändras", -"Upload" => "Ladda upp", "File handling" => "Filhantering", "Maximum upload size" => "Maximal storlek att ladda upp", "max. possible: " => "max. möjligt:", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 257aacf1471..0ab17785b93 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -22,7 +22,6 @@ $TRANSLATIONS = array( "Name" => "பெயர்", "Size" => "அளவு", "Modified" => "மாற்றப்பட்டது", -"Upload" => "பதிவேற்றுக", "File handling" => "கோப்பு கையாளுதல்", "Maximum upload size" => "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு ", "max. possible: " => "ஆகக் கூடியது:", diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 8f5f15f2a34..f0fd29da7e4 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "แก้ไขแล้ว", -"Upload" => "อัพโหลด", "File handling" => "การจัดกาไฟล์", "Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", "max. possible: " => "จำนวนสูงสุดที่สามารถทำได้: ", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 1f69dca628d..46f5af30719 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -64,7 +64,6 @@ $TRANSLATIONS = array( "Modified" => "Değiştirilme", "Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır.", "%s could not be renamed" => "%s yeniden adlandırılamadı", -"Upload" => "Yükle", "File handling" => "Dosya işlemleri", "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index 13354c153b2..58ccba94c13 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Name" => "ئاتى", "Size" => "چوڭلۇقى", "Modified" => "ئۆزگەرتكەن", -"Upload" => "يۈكلە", "Save" => "ساقلا", "New" => "يېڭى", "Text file" => "تېكىست ھۆججەت", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 905d27c3ee2..5643dedb9d4 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -40,7 +40,6 @@ $TRANSLATIONS = array( "Size" => "Розмір", "Modified" => "Змінено", "%s could not be renamed" => "%s не може бути перейменований", -"Upload" => "Вивантажити", "File handling" => "Робота з файлами", "Maximum upload size" => "Максимальний розмір відвантажень", "max. possible: " => "макс.можливе:", diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 55f9bd25942..058add4bb73 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -55,7 +55,6 @@ $TRANSLATIONS = array( "Size" => "Kích cỡ", "Modified" => "Thay đổi", "%s could not be renamed" => "%s không thể đổi tên", -"Upload" => "Tải lên", "File handling" => "Xử lý tập tin", "Maximum upload size" => "Kích thước tối đa ", "max. possible: " => "tối đa cho phép:", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 068f97c1ddf..59623bffd18 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -59,7 +59,6 @@ $TRANSLATIONS = array( "Modified" => "修改日期", "Invalid folder name. Usage of 'Shared' is reserved." => "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹", "%s could not be renamed" => "%s 不能被重命名", -"Upload" => "上传", "File handling" => "文件处理", "Maximum upload size" => "最大上传大小", "max. possible: " => "最大允许: ", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index eaa32cd537a..7a701166e64 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -7,7 +7,6 @@ $TRANSLATIONS = array( "_%n file_::_%n files_" => array(""), "_Uploading %n file_::_Uploading %n files_" => array(""), "Name" => "名稱", -"Upload" => "上傳", "Save" => "儲存", "Download" => "下載", "Delete" => "刪除" diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 154efd563fd..3668b37d64e 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -55,7 +55,6 @@ $TRANSLATIONS = array( "Size" => "大小", "Modified" => "修改時間", "%s could not be renamed" => "無法重新命名 %s", -"Upload" => "上傳", "File handling" => "檔案處理", "Maximum upload size" => "上傳限制", "max. possible: " => "最大允許:", diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index 5fcd0a9f060..53ee2bc0303 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Prosím uistite sa, že PHP verzie 5.3.3 alebo novšej je nainštalované a tiež, že OpenSSL knižnica spolu z PHP rozšírením je povolená a konfigurovaná správne. Nateraz bola aplikácia šifrovania zablokovaná.", "Following users are not set up for encryption:" => "Nasledujúci používatelia nie sú nastavení pre šifrovanie:", "Initial encryption started... This can take some time. Please wait." => "Počiatočné šifrovanie započalo ... To môže nejakú dobu trvať. Čakajte prosím.", +"Initial encryption running... Please try again later." => "Počiatočné šifrovanie beží... Skúste to neskôr znovu.", "Go directly to your " => "Choďte priamo do vášho", "personal settings" => "osobné nastavenia", "Encryption" => "Šifrovanie", diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index de32fb5ffb1..96f6241e5fb 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -6,17 +6,25 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Zadajte platný kľúč aplikácie a heslo Dropbox", "Error configuring Google Drive storage" => "Chyba pri konfigurácii úložiska Google drive", "Saved" => "Uložené", +"Note: " => "Poznámka: ", +" and " => "a", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Poznámka: cURL podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Poznámka: FTP podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Poznámka: \"%s\" nie je nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval.", "External Storage" => "Externé úložisko", "Folder name" => "Názov priečinka", "External storage" => "Externé úložisko", "Configuration" => "Nastavenia", "Options" => "Možnosti", +"Available for" => "K dispozícii pre", "Add storage" => "Pridať úložisko", +"No user or group" => "Žiadny používateľ alebo skupina", "All Users" => "Všetci používatelia", "Groups" => "Skupiny", "Users" => "Používatelia", "Delete" => "Zmazať", "Enable User External Storage" => "Povoliť externé úložisko", +"Allow users to mount the following external storage" => "Povoliť používateľom pripojiť tieto externé úložiská", "SSL root certificates" => "Koreňové SSL certifikáty", "Import Root Certificate" => "Importovať koreňový certifikát" ); diff --git a/apps/user_ldap/l10n/en_GB.php b/apps/user_ldap/l10n/en_GB.php index 6dfc3e53f0c..cb0ac1a5497 100644 --- a/apps/user_ldap/l10n/en_GB.php +++ b/apps/user_ldap/l10n/en_GB.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Backup (Replica) Port", "Disable Main Server" => "Disable Main Server", "Only connect to the replica server." => "Only connect to the replica server.", +"Case insensitive LDAP server (Windows)" => "Case insensitive LDAP server (Windows)", "Turn off SSL certificate validation." => "Turn off SSL certificate validation.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server.", "Cache Time-To-Live" => "Cache Time-To-Live", diff --git a/apps/user_ldap/l10n/es_CR.php b/apps/user_ldap/l10n/es_CR.php new file mode 100644 index 00000000000..3a1e002311c --- /dev/null +++ b/apps/user_ldap/l10n/es_CR.php @@ -0,0 +1,6 @@ + array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/or_IN.php b/apps/user_ldap/l10n/or_IN.php new file mode 100644 index 00000000000..3a1e002311c --- /dev/null +++ b/apps/user_ldap/l10n/or_IN.php @@ -0,0 +1,6 @@ + array("",""), +"_%s user found_::_%s users found_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/sk_SK.php b/apps/user_ldap/l10n/sk_SK.php index edda4244336..3c6b51824f4 100644 --- a/apps/user_ldap/l10n/sk_SK.php +++ b/apps/user_ldap/l10n/sk_SK.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Uložiť", "Test Configuration" => "Test nastavenia", "Help" => "Pomoc", +"Groups meeting these criteria are available in %s:" => "Skupiny spĺňajúce tieto kritériá sú k dispozícii v %s:", "only those object classes:" => "len tieto triedy objektov:", "only from those groups:" => "len z týchto skupín:", "Edit raw filter instead" => "Miesto pre úpravu raw filtra", "Raw LDAP filter" => "Raw LDAP filter", "The filter specifies which LDAP groups shall have access to the %s instance." => "Tento filter LDAP určuje, ktoré skupiny budú mať prístup k %s inštancii.", "groups found" => "nájdené skupiny", +"Users login with this attribute:" => "Používateľov prihlásiť pomocou tohto atribútu:", "LDAP Username:" => "LDAP používateľské meno:", "LDAP Email Address:" => "LDAP emailová adresa:", "Other Attributes:" => "Iné atribúty:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Pre anonymný prístup ponechajte údaje DN a Heslo prázdne.", "One Base DN per line" => "Jedno základné DN na riadok", "You can specify Base DN for users and groups in the Advanced tab" => "V rozšírenom nastavení môžete zadať základné DN pre používateľov a skupiny", +"Limit %s access to users meeting these criteria:" => "Obmedziť %s prístup na používateľov spĺňajúcich tieto kritériá:", "The filter specifies which LDAP users shall have access to the %s instance." => "Tento filter LDAP určuje, ktorí používatelia majú prístup k %s inštancii.", "users found" => "nájdení používatelia", "Back" => "Späť", @@ -67,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Záložný server (kópia) port", "Disable Main Server" => "Zakázať hlavný server", "Only connect to the replica server." => "Pripojiť sa len k záložnému serveru.", +"Case insensitive LDAP server (Windows)" => "LDAP server je citlivý na veľkosť písmen (Windows)", "Turn off SSL certificate validation." => "Vypnúť overovanie SSL certifikátu.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Neodporúčané, použite iba pri testovaní! Pokiaľ spojenie funguje iba z daným nastavením, importujte SSL certifikát LDAP servera do vášho %s servera.", "Cache Time-To-Live" => "Životnosť objektov vo vyrovnávacej pamäti", @@ -84,6 +88,7 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Jedna skupinová základná DN na riadok", "Group Search Attributes" => "Atribúty vyhľadávania skupín", "Group-Member association" => "Priradenie člena skupiny", +"Nested Groups" => "Vnorené skupiny", "Special Attributes" => "Špeciálne atribúty", "Quota Field" => "Pole kvóty", "Quota Default" => "Predvolená kvóta", diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index a04cc40c7cc..c19edebc260 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "verlede maand", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "maande gelede", "last year" => "verlede jaar", "years ago" => "jare gelede", "Choose" => "Kies", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 8c1d5ec3076..b29a661ec66 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","","","","",""), "last month" => "الشهر الماضي", "_%n month ago_::_%n months ago_" => array("","","","","",""), -"months ago" => "شهر مضى", "last year" => "السنةالماضية", "years ago" => "سنة مضت", "Choose" => "اختيار", diff --git a/core/l10n/ast.php b/core/l10n/ast.php index 667e452a0de..fd4a539c0ba 100644 --- a/core/l10n/ast.php +++ b/core/l10n/ast.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("fai %n día","fai %n díes"), "last month" => "mes caberu", "_%n month ago_::_%n months ago_" => array("fai %n mes","fai %n meses"), -"months ago" => "fai meses", "last year" => "añu caberu", "years ago" => "fai años", "Choose" => "Esbillar", diff --git a/core/l10n/be.php b/core/l10n/be.php index 56f08cccc3c..383d2494d2c 100644 --- a/core/l10n/be.php +++ b/core/l10n/be.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","","",""), "last month" => "У мінулым месяцы", "_%n month ago_::_%n months ago_" => array("","","",""), -"months ago" => "Месяцаў таму", "last year" => "У мінулым годзе", "years ago" => "Гадоў таму", "Choose" => "Выбар", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 397440bea2b..861d7370ed1 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "последният месец", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "Преди месеци", "last year" => "последната година", "years ago" => "последните години", "Choose" => "Избери", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index 7c74a9d8af5..e9f46d686c1 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "গত মাস", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "মাস পূর্বে", "last year" => "গত বছর", "years ago" => "বছর পূর্বে", "Choose" => "বেছে নিন", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index 65c28fa0a68..d4adb682f8a 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("fa %n dies","fa %n dies"), "last month" => "el mes passat", "_%n month ago_::_%n months ago_" => array("fa %n mes","fa %n mesos"), -"months ago" => "mesos enrere", "last year" => "l'any passat", "years ago" => "anys enrere", "Choose" => "Escull", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 45c92406bff..46b8de6bac5 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("před %n dnem","před %n dny","před %n dny"), "last month" => "minulý měsíc", "_%n month ago_::_%n months ago_" => array("před %n měsícem","před %n měsíci","před %n měsíci"), -"months ago" => "před měsíci", "last year" => "minulý rok", "years ago" => "před lety", "Choose" => "Vybrat", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index f73f60d069c..b79c1d5df59 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","","",""), "last month" => "mis diwethaf", "_%n month ago_::_%n months ago_" => array("","","",""), -"months ago" => "misoedd yn ôl", "last year" => "y llynedd", "years ago" => "blwyddyn yn ôl", "Choose" => "Dewisiwch", diff --git a/core/l10n/da.php b/core/l10n/da.php index c7bda6fd365..9991e3e4907 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag siden","%n dage siden"), "last month" => "sidste måned", "_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), -"months ago" => "måneder siden", "last year" => "sidste år", "years ago" => "år siden", "Choose" => "Vælg", diff --git a/core/l10n/de.php b/core/l10n/de.php index fabf35440cb..7a0aecf4d5f 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Choose" => "Auswählen", diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index eb2cfd233d3..1a2c56635cf 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Choose" => "Auswählen", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index a65714f26f6..b8bce778f87 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", "_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), -"months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Choose" => "Auswählen", diff --git a/core/l10n/el.php b/core/l10n/el.php index e6a53c54d3c..c9506fda05a 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ημέρα πριν","%n ημέρες πριν"), "last month" => "τελευταίο μήνα", "_%n month ago_::_%n months ago_" => array("%n μήνας πριν","%n μήνες πριν"), -"months ago" => "μήνες πριν", "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", "Choose" => "Επιλέξτε", diff --git a/core/l10n/en_GB.php b/core/l10n/en_GB.php index 215bae92d1c..016bf23e8e1 100644 --- a/core/l10n/en_GB.php +++ b/core/l10n/en_GB.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n day ago","%n days ago"), "last month" => "last month", "_%n month ago_::_%n months ago_" => array("%n month ago","%n months ago"), -"months ago" => "months ago", "last year" => "last year", "years ago" => "years ago", "Choose" => "Choose", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 05d28efb66b..19d330e5c26 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("antaŭ %n tago","antaŭ %n tagoj"), "last month" => "lastamonate", "_%n month ago_::_%n months ago_" => array("antaŭ %n monato","antaŭ %n monatoj"), -"months ago" => "monatoj antaŭe", "last year" => "lastajare", "years ago" => "jaroj antaŭe", "Choose" => "Elekti", diff --git a/core/l10n/es.php b/core/l10n/es.php index cb2d09d60fe..53d2a9f4c2b 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"months ago" => "meses antes", "last year" => "el año pasado", "years ago" => "años antes", "Choose" => "Seleccionar", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index c9d270edefa..59e0afbdbe6 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"months ago" => "meses atrás", "last year" => "el año pasado", "years ago" => "años atrás", "Choose" => "Elegir", diff --git a/core/l10n/es_CL.php b/core/l10n/es_CL.php index b89e6575c5e..cab130cbd3c 100644 --- a/core/l10n/es_CL.php +++ b/core/l10n/es_CL.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "mes anterior", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "meses antes", "last year" => "último año", "years ago" => "años anteriores", "Choose" => "Choose", diff --git a/core/l10n/es_CR.php b/core/l10n/es_CR.php new file mode 100644 index 00000000000..ffcdde48d47 --- /dev/null +++ b/core/l10n/es_CR.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/es_MX.php b/core/l10n/es_MX.php index 6a90e3d7783..dca69ebaa33 100644 --- a/core/l10n/es_MX.php +++ b/core/l10n/es_MX.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Hace %n día","Hace %n días"), "last month" => "el mes pasado", "_%n month ago_::_%n months ago_" => array("Hace %n mes","Hace %n meses"), -"months ago" => "meses antes", "last year" => "el año pasado", "years ago" => "años antes", "Choose" => "Seleccionar", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index 422caac9c15..f0e05e571ee 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n päev tagasi","%n päeva tagasi"), "last month" => "viimasel kuul", "_%n month ago_::_%n months ago_" => array("%n kuu tagasi","%n kuud tagasi"), -"months ago" => "kuu tagasi", "last year" => "viimasel aastal", "years ago" => "aastat tagasi", "Choose" => "Vali", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index 8fd554485db..3b59fcdddb7 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("orain dela egun %n","orain dela %n egun"), "last month" => "joan den hilabetean", "_%n month ago_::_%n months ago_" => array("orain dela hilabete %n","orain dela %n hilabete"), -"months ago" => "hilabete", "last year" => "joan den urtean", "years ago" => "urte", "Choose" => "Aukeratu", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index a349d3b7704..ee634f466c8 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "ماه قبل", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "ماه‌های قبل", "last year" => "سال قبل", "years ago" => "سال‌های قبل", "Choose" => "انتخاب کردن", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 7797d17c872..9188469abc2 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n päivä sitten","%n päivää sitten"), "last month" => "viime kuussa", "_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), -"months ago" => "kuukautta sitten", "last year" => "viime vuonna", "years ago" => "vuotta sitten", "Choose" => "Valitse", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 623f129c860..49be57abf37 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("il y a %n jour","il y a %n jours"), "last month" => "le mois dernier", "_%n month ago_::_%n months ago_" => array("Il y a %n mois","Il y a %n mois"), -"months ago" => "il y a plusieurs mois", "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", "Choose" => "Choisir", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index fac17a5c230..9509446ec7c 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("hai %n día","vai %n días"), "last month" => "último mes", "_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), -"months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", "Choose" => "Escoller", diff --git a/core/l10n/he.php b/core/l10n/he.php index 8fb7373a143..d629ac66213 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("לפני %n יום","לפני %n ימים"), "last month" => "חודש שעבר", "_%n month ago_::_%n months ago_" => array("לפני %n חודש","לפני %n חודשים"), -"months ago" => "חודשים", "last year" => "שנה שעברה", "years ago" => "שנים", "Choose" => "בחירה", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 46cc802df9f..60b82a22ad7 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","",""), "last month" => "prošli mjesec", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "mjeseci", "last year" => "prošlu godinu", "years ago" => "godina", "Choose" => "Izaberi", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 096b28e2d9b..529eed687c6 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n nappal ezelőtt","%n nappal ezelőtt"), "last month" => "múlt hónapban", "_%n month ago_::_%n months ago_" => array("%n hónappal ezelőtt","%n hónappal ezelőtt"), -"months ago" => "több hónapja", "last year" => "tavaly", "years ago" => "több éve", "Choose" => "Válasszon", diff --git a/core/l10n/id.php b/core/l10n/id.php index 5038d0d6c82..8d18cc60a97 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n hari yang lalu"), "last month" => "bulan kemarin", "_%n month ago_::_%n months ago_" => array("%n bulan yang lalu"), -"months ago" => "beberapa bulan lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", "Choose" => "Pilih", diff --git a/core/l10n/is.php b/core/l10n/is.php index f0bb8b94ff5..254c4b38689 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "síðasta mánuði", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "mánuðir síðan", "last year" => "síðasta ári", "years ago" => "einhverjum árum", "Choose" => "Veldu", diff --git a/core/l10n/it.php b/core/l10n/it.php index 98d0d5e3b0e..dfcc0a480ac 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n giorno fa","%n giorni fa"), "last month" => "mese scorso", "_%n month ago_::_%n months ago_" => array("%n mese fa","%n mesi fa"), -"months ago" => "mesi fa", "last year" => "anno scorso", "years ago" => "anni fa", "Choose" => "Scegli", diff --git a/core/l10n/ja.php b/core/l10n/ja.php index 3a99f0e598b..ea8b44ff60a 100644 --- a/core/l10n/ja.php +++ b/core/l10n/ja.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n日前"), "last month" => "1ヶ月前", "_%n month ago_::_%n months ago_" => array("%nヶ月前"), -"months ago" => "数ヶ月前", "last year" => "1年前", "years ago" => "数年前", "Choose" => "選択", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index a76a8866541..3389bafa7a2 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "გასულ თვეში", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "თვის წინ", "last year" => "ბოლო წელს", "years ago" => "წლის წინ", "Choose" => "არჩევა", diff --git a/core/l10n/km.php b/core/l10n/km.php index f6de962a9c6..0eac818c578 100644 --- a/core/l10n/km.php +++ b/core/l10n/km.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ថ្ងៃ​មុន"), "last month" => "ខែមុន", "_%n month ago_::_%n months ago_" => array("%n ខែ​មុន"), -"months ago" => "ខែ​មុន", "last year" => "ឆ្នាំ​មុន", "years ago" => "ឆ្នាំ​មុន", "Choose" => "ជ្រើស", diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 6020777f874..d8c32e070d3 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n일 전 "), "last month" => "지난 달", "_%n month ago_::_%n months ago_" => array("%n달 전 "), -"months ago" => "개월 전", "last year" => "작년", "years ago" => "년 전", "Choose" => "선택", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index b60f6c7c5f5..30337c5fc8f 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "leschte Mount", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "Méint hir", "last year" => "Lescht Joer", "years ago" => "Joren hir", "Choose" => "Auswielen", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 776cde74fe7..e3b612df3fa 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("prieš %n dieną","prieš %n dienas","prieš %n dienų"), "last month" => "praeitą mėnesį", "_%n month ago_::_%n months ago_" => array("prieš %n mėnesį","prieš %n mėnesius","prieš %n mėnesių"), -"months ago" => "prieš mėnesį", "last year" => "praeitais metais", "years ago" => "prieš metus", "Choose" => "Pasirinkite", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 683ff2c129a..37cde915c5e 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Šodien, %n dienas","Pirms %n dienas","Pirms %n dienām"), "last month" => "pagājušajā mēnesī", "_%n month ago_::_%n months ago_" => array("Šomēnes, %n mēneši","Pirms %n mēneša","Pirms %n mēnešiem"), -"months ago" => "mēnešus atpakaļ", "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", "Choose" => "Izvēlieties", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index c56ae32bf2a..64c6671abf8 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "минатиот месец", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "пред месеци", "last year" => "минатата година", "years ago" => "пред години", "Choose" => "Избери", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index c47599f5a17..2a9873f4815 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag siden","%n dager siden"), "last month" => "forrige måned", "_%n month ago_::_%n months ago_" => array("%n dag siden","%n dager siden"), -"months ago" => "måneder siden", "last year" => "i fjor", "years ago" => "år siden", "Choose" => "Velg", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index b09509e6290..43748352a7b 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","%n dagen geleden"), "last month" => "vorige maand", "_%n month ago_::_%n months ago_" => array("","%n maanden geleden"), -"months ago" => "maanden geleden", "last year" => "vorig jaar", "years ago" => "jaar geleden", "Choose" => "Kies", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index e6a80262a23..8d7e3c37881 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -37,7 +37,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag sidan","%n dagar sidan"), "last month" => "førre månad", "_%n month ago_::_%n months ago_" => array("%n månad sidan","%n månadar sidan"), -"months ago" => "månadar sidan", "last year" => "i fjor", "years ago" => "år sidan", "Choose" => "Vel", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 102514a4624..b13275822bd 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "mes passat", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "meses a", "last year" => "an passat", "years ago" => "ans a", "Choose" => "Causís", diff --git a/core/l10n/or_IN.php b/core/l10n/or_IN.php new file mode 100644 index 00000000000..ffcdde48d47 --- /dev/null +++ b/core/l10n/or_IN.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"_{count} file conflict_::_{count} file conflicts_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/pa.php b/core/l10n/pa.php index 395928dc35a..021452d0b31 100644 --- a/core/l10n/pa.php +++ b/core/l10n/pa.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "ਪਿਛਲੇ ਮਹੀਨੇ", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "ਮਹੀਨੇ ਪਹਿਲਾਂ", "last year" => "ਪਿਛਲੇ ਸਾਲ", "years ago" => "ਸਾਲਾਂ ਪਹਿਲਾਂ", "Choose" => "ਚੁਣੋ", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index fe0cf145832..0e9860b4bf9 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dzień temu","%n dni temu","%n dni temu"), "last month" => "w zeszłym miesiącu", "_%n month ago_::_%n months ago_" => array("%n miesiąc temu","%n miesięcy temu","%n miesięcy temu"), -"months ago" => "miesięcy temu", "last year" => "w zeszłym roku", "years ago" => "lat temu", "Choose" => "Wybierz", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 3545426b670..a7b671b4408 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("ha %n dia","ha %n dias"), "last month" => "último mês", "_%n month ago_::_%n months ago_" => array("ha %n mês","ha %n meses"), -"months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", "Choose" => "Escolha", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index bb1b6011a6b..9015dfd22b0 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dia atrás","%n dias atrás"), "last month" => "ultímo mês", "_%n month ago_::_%n months ago_" => array("%n mês atrás","%n meses atrás"), -"months ago" => "meses atrás", "last year" => "ano passado", "years ago" => "anos atrás", "Choose" => "Escolha", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 306c181bfd8..634ef3b764d 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("acum %n zi","acum %n zile","acum %n zile"), "last month" => "ultima lună", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "luni în urmă", "last year" => "ultimul an", "years ago" => "ani în urmă", "Choose" => "Alege", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index aa784088f7a..a09178a6cd1 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n день назад","%n дня назад","%n дней назад"), "last month" => "в прошлом месяце", "_%n month ago_::_%n months ago_" => array("%n месяц назад","%n месяца назад","%n месяцев назад"), -"months ago" => "несколько месяцев назад", "last year" => "в прошлом году", "years ago" => "несколько лет назад", "Choose" => "Выбрать", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index bcfb18520a8..bb125cc6af7 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "පෙර මාසයේ", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "මාස කීපයකට පෙර", "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර", "Choose" => "තෝරන්න", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 1b717bc412e..80d816a461d 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("pred %n dňom","pred %n dňami","pred %n dňami"), "last month" => "minulý mesiac", "_%n month ago_::_%n months ago_" => array("pred %n mesiacom","pred %n mesiacmi","pred %n mesiacmi"), -"months ago" => "pred mesiacmi", "last year" => "minulý rok", "years ago" => "pred rokmi", "Choose" => "Vybrať", @@ -51,6 +50,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} konflikt súboru","{count} konflikty súboru","{count} konfliktov súboru"), "One file conflict" => "Jeden konflikt súboru", "New Files" => "Nové súbory", +"Already existing files" => "Už existujúce súbory", "Which files do you want to keep?" => "Ktoré súbory chcete ponechať?", "If you select both versions, the copied file will have a number added to its name." => "Ak zvolíte obe verzie, názov nakopírovaného súboru bude doplnený o číslo.", "Cancel" => "Zrušiť", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index 7da6a81086c..c87a8d8d8f3 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("pred %n dnevom","pred %n dnevoma","pred %n dnevi","pred %n dnevi"), "last month" => "zadnji mesec", "_%n month ago_::_%n months ago_" => array("pred %n mesecem","pred %n mesecema","pred %n meseci","pred %n meseci"), -"months ago" => "mesecev nazaj", "last year" => "lansko leto", "years ago" => "let nazaj", "Choose" => "Izbor", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index bfb7b0903f6..b3221dc75f3 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -32,7 +32,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ditë më parë","%n ditë më parë"), "last month" => "muajin e shkuar", "_%n month ago_::_%n months ago_" => array("%n muaj më parë","%n muaj më parë"), -"months ago" => "muaj më parë", "last year" => "vitin e shkuar", "years ago" => "vite më parë", "Choose" => "Zgjidh", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 55eee982a6e..388ebb0df92 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("","",""), "last month" => "прошлог месеца", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "месеци раније", "last year" => "прошле године", "years ago" => "година раније", "Choose" => "Одабери", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index e7eb2b499a3..e7783b3c023 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("Prije %n dan.","Prije %n dana.","Prije %n dana."), "last month" => "prošlog meseca", "_%n month ago_::_%n months ago_" => array("","",""), -"months ago" => "pre nekoliko meseci", "last year" => "prošle godine", "years ago" => "pre nekoliko godina", "Choose" => "Izaberi", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index d46c204d7c3..d198b0d77c8 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n dag sedan","%n dagar sedan"), "last month" => "förra månaden", "_%n month ago_::_%n months ago_" => array("%n månad sedan","%n månader sedan"), -"months ago" => "månader sedan", "last year" => "förra året", "years ago" => "år sedan", "Choose" => "Välj", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 95468a9d7ac..c0b4dce7cf4 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("",""), "last month" => "கடந்த மாதம்", "_%n month ago_::_%n months ago_" => array("",""), -"months ago" => "மாதங்களுக்கு முன்", "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", "Choose" => "தெரிவுசெய்க ", diff --git a/core/l10n/te.php b/core/l10n/te.php index 9c22a61aa7d..7b76349b852 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -28,7 +28,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n రోజు క్రితం","%n రోజుల క్రితం"), "last month" => "పోయిన నెల", "_%n month ago_::_%n months ago_" => array("%n నెల క్రితం","%n నెలల క్రితం"), -"months ago" => "నెలల క్రితం", "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం", "Yes" => "అవును", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 9ee3c60f947..61a67f78026 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -29,7 +29,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "เดือนที่แล้ว", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "เดือน ที่ผ่านมา", "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", "Choose" => "เลือก", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 2b0d952a34b..d5880d8a09d 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -39,7 +39,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n gün önce","%n gün önce"), "last month" => "geçen ay", "_%n month ago_::_%n months ago_" => array("%n ay önce","%n ay önce"), -"months ago" => "aylar önce", "last year" => "geçen yıl", "years ago" => "yıllar önce", "Choose" => "Seç", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index f6bcfdcdc8d..2bbfb6cd981 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n день тому","%n дні тому","%n днів тому"), "last month" => "минулого місяця", "_%n month ago_::_%n months ago_" => array("%n місяць тому","%n місяці тому","%n місяців тому"), -"months ago" => "місяці тому", "last year" => "минулого року", "years ago" => "роки тому", "Choose" => "Обрати", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 319f68b6355..fe24cb385e5 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n ngày trước"), "last month" => "tháng trước", "_%n month ago_::_%n months ago_" => array("%n tháng trước"), -"months ago" => "tháng trước", "last year" => "năm trước", "years ago" => "năm trước", "Choose" => "Chọn", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 68f50baf98f..b068d425676 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n 天前"), "last month" => "上月", "_%n month ago_::_%n months ago_" => array("%n 月前"), -"months ago" => "月前", "last year" => "去年", "years ago" => "年前", "Choose" => "选择(&C)...", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index 51d78a09796..294fa7d6fe6 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array(""), "last month" => "前一月", "_%n month ago_::_%n months ago_" => array(""), -"months ago" => "個月之前", "Yes" => "Yes", "No" => "No", "Ok" => "OK", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 0799344697a..600c8df9bdc 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -38,7 +38,6 @@ $TRANSLATIONS = array( "_%n day ago_::_%n days ago_" => array("%n 天前"), "last month" => "上個月", "_%n month ago_::_%n months ago_" => array("%n 個月前"), -"months ago" => "幾個月前", "last year" => "去年", "years ago" => "幾年前", "Choose" => "選擇", diff --git a/l10n/ach/core.po b/l10n/ach/core.po index ca25a26988f..508df40e1df 100644 --- a/l10n/ach/core.po +++ b/l10n/ach/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ach/files.po b/l10n/ach/files.po index 2ec8af4d0e2..3feea8b76a1 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 155b27a4f72..06f42ada91f 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ady/core.po b/l10n/ady/core.po index 3c1f515e05a..2641da3bfc3 100644 --- a/l10n/ady/core.po +++ b/l10n/ady/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ady/files.po b/l10n/ady/files.po index 12f59cbc7bc..e0960d692e9 100644 --- a/l10n/ady/files.po +++ b/l10n/ady/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po index 4a8e95a3bed..64fe376c032 100644 --- a/l10n/ady/settings.po +++ b/l10n/ady/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 6c03061dbea..fe2264f61e4 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-17 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 19:39+0000\n" -"Last-Translator: kalliet \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,63 +135,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Instellings" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekondes gelede" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute gelede" msgstr[1] "%n minute gelede" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "vandag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "gister" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "verlede maand" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "maande gelede" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "verlede jaar" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "jare gelede" @@ -295,12 +291,12 @@ msgstr "Gedeel" msgid "Share" msgstr "Deel" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:732 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fout" -#: js/share.js:160 js/share.js:788 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan wysig" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:719 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:732 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:750 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:775 +#: js/share.js:777 msgid "Sending ..." msgstr "Stuur ..." -#: js/share.js:786 +#: js/share.js:788 msgid "Email sent" msgstr "E-pos gestuur" -#: js/share.js:810 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 24833c8a10e..30b5a5ae9ae 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index de9915079a2..b8e7b43bf5d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ak/core.po b/l10n/ak/core.po index 1fd891dc6ef..2314857d23a 100644 --- a/l10n/ak/core.po +++ b/l10n/ak/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ak/files.po b/l10n/ak/files.po index 73d266f53a1..d566e8e3cbf 100644 --- a/l10n/ak/files.po +++ b/l10n/ak/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po index 27711c91512..92e383c7012 100644 --- a/l10n/ak/settings.po +++ b/l10n/ak/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/am_ET/core.po b/l10n/am_ET/core.po index e66052cc04c..3d756941bf5 100644 --- a/l10n/am_ET/core.po +++ b/l10n/am_ET/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/am_ET/files.po b/l10n/am_ET/files.po index 22104ecccff..09ff9217d1f 100644 --- a/l10n/am_ET/files.po +++ b/l10n/am_ET/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/am_ET/settings.po b/l10n/am_ET/settings.po index 6aa770b32ef..6c609cd16f8 100644 --- a/l10n/am_ET/settings.po +++ b/l10n/am_ET/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 13b1456ee6c..2f3200cf40e 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,19 +136,19 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "إعدادات" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "جاري الحفظ..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -158,7 +158,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -168,15 +168,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "اليوم" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -186,11 +186,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -200,15 +200,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "شهر مضى" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "سنة مضت" @@ -316,12 +312,12 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "خطأ" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -385,71 +381,71 @@ msgstr "مشاركة عبر البريد الإلكتروني:" msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "مجموعة" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "إنشاء" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "تحديث" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "حذف" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "مشاركة" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "تحذير" @@ -477,7 +473,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index bba1a48aebc..cf267ac9f2b 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -320,8 +320,9 @@ msgid "%s could not be renamed" msgstr "%s لا يمكن إعادة تسميته. " #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "رفع" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 51b0b345d5a..d8954db88ce 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "السماح بتنبيهات البريد الالكتروني." #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "السماح للمستخدم الى ارسال تنبيه البريد الالكتروني للملفات المشتركة " +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ast/core.po b/l10n/ast/core.po index 2a19c06bdcb..5fb6629ee39 100644 --- a/l10n/ast/core.po +++ b/l10n/ast/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: Tornes Llume \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,63 +135,59 @@ msgstr "Payares" msgid "December" msgstr "Avientu" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Axustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "fai segundos" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fai %n minutu" msgstr[1] "fai %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fai %n hora" msgstr[1] "fai %n hores" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "güei" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayeri" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fai %n día" msgstr[1] "fai %n díes" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mes caberu" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fai %n mes" msgstr[1] "fai %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "fai meses" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "añu caberu" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "fai años" @@ -456,7 +452,7 @@ msgstr "Editar etiquetes" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ast/files.po b/l10n/ast/files.po index 89e4cae67dc..5a1b65708b2 100644 --- a/l10n/ast/files.po +++ b/l10n/ast/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Xubir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index 800d6e3ec20..ee7ed5a49c9 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/az/core.po b/l10n/az/core.po index 16e53892b8e..f61bb1c4aa4 100644 --- a/l10n/az/core.po +++ b/l10n/az/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/az/files.po b/l10n/az/files.po index 8d82454375a..0713c91424f 100644 --- a/l10n/az/files.po +++ b/l10n/az/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/az/settings.po b/l10n/az/settings.po index fbc31d71164..e9de38850fb 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/be/core.po b/l10n/be/core.po index b5a06d9d8f4..7b3d997c5f3 100644 --- a/l10n/be/core.po +++ b/l10n/be/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,19 +135,19 @@ msgstr "Лістапад" msgid "December" msgstr "Снежань" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Налады" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Секунд таму" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -155,7 +155,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -163,15 +163,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Сёння" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Ўчора" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -179,11 +179,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "У мінулым месяцы" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -191,15 +191,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "Месяцаў таму" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "У мінулым годзе" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Гадоў таму" @@ -305,12 +301,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Памылка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -374,71 +370,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -466,7 +462,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/be/files.po b/l10n/be/files.po index 4fd29da1622..6bcbb0a2aa0 100644 --- a/l10n/be/files.po +++ b/l10n/be/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -312,7 +312,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 8351820bb2b..1f6747d53d5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index 1927b8fb966..9dd5f13dede 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Настройки" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Записване..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "днес" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчера" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "последният месец" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "Преди месеци" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "последната година" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "последните години" @@ -295,12 +291,12 @@ msgstr "Споделено" msgid "Share" msgstr "Споделяне" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Грешка при споделяне" @@ -364,71 +360,71 @@ msgstr "сподели по поща:" msgid "No people found" msgstr "Не са открити хора" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Допълнително споделяне не е разрешено" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Споделено в {item} с {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Премахни споделяне" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може да променя" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контрол на достъпа" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "създаване" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "Обновяване" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "Изтриване" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "Споделяне" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Защитено с парола" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Грешка при премахване на дата за изтичане" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Грепка при поставяне на дата за изтичане" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Изпращам ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Пощата е изпратена" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Внимание" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 117a237fae8..eac7d479c0b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Качване" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index bfc3c97823f..45e8a22497a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 190c189d639..fc4de2ea840 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "আজ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "গত মাস" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "মাস পূর্বে" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "গত বছর" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "বছর পূর্বে" @@ -294,12 +290,12 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "সমস্যা" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -363,71 +359,71 @@ msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "সতর্কবাণী" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 1ddd8d6c744..11c329107ef 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "আপলোড" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index ab60e1d0ceb..8dfd63b8a15 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 0b742954372..3100ac1dedd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,140 +134,136 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Spašavam..." -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -368,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 194ec79a386..6f64ff337e5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,37 +213,37 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -309,7 +309,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index 8ec5e987328..b58fd383af9 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ca/core.po b/l10n/ca/core.po index b935d5a08e8..1e564d686fc 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuració" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Desant..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "fa %n minut" msgstr[1] "fa %n minuts" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "fa %n hora" msgstr[1] "fa %n hores" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "avui" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ahir" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "fa %n dies" msgstr[1] "fa %n dies" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes passat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "fa %n mes" msgstr[1] "fa %n mesos" -#: js/js.js:1107 -msgid "months ago" -msgstr "mesos enrere" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "l'any passat" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anys enrere" @@ -297,12 +293,12 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error en compartir" @@ -366,71 +362,71 @@ msgstr "Comparteix per correu electrònic" msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grup" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notifica per correu electrònic" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pot editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control d'accés" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crea" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualitza" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "elimina" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "comparteix" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Avís" @@ -458,7 +454,7 @@ msgstr "Edita etiquetes" msgid "Error loading dialog template: {error}" msgstr "Error en carregar la plantilla de diàleg: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No heu seleccionat les etiquetes a eliminar." diff --git a/l10n/ca/files.po b/l10n/ca/files.po index 59335d109df..72127548ff0 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s no es pot canviar el nom" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Puja" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index fad333300c4..8a8a6b05b80 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Permet notificacions per correu electrónic" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permet a l'usuari enviar notificacions de fitxers compartits per correu " +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index d5e17f61366..8effd3dc1f1 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" -"Last-Translator: svetlemodry \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -143,67 +143,63 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavení" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Ukládám..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "před %n minutou" msgstr[1] "před %n minutami" msgstr[2] "před %n minutami" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "před %n hodinou" msgstr[1] "před %n hodinami" msgstr[2] "před %n hodinami" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "dnes" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "včera" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "před %n dnem" msgstr[1] "před %n dny" msgstr[2] "před %n dny" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "před %n měsícem" msgstr[1] "před %n měsíci" msgstr[2] "před %n měsíci" -#: js/js.js:1107 -msgid "months ago" -msgstr "před měsíci" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "minulý rok" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "před lety" @@ -469,7 +465,7 @@ msgstr "Editovat štítky" msgid "Error loading dialog template: {error}" msgstr "Chyba při načítání šablony dialogu: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Žádné štítky nebyly vybrány ke smazání." diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index 8bc567a4dca..70caf9e725b 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -317,8 +317,9 @@ msgid "%s could not be renamed" msgstr "%s nemůže být přejmenován" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Odeslat" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 5618acb9b4e..711ef3ddccc 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -6,6 +6,7 @@ # Twiguard, 2013 # Honza K. , 2013 # liska_, 2013 +# svetlemodry , 2014 # cvanca , 2013 # m23 , 2014 # pstast , 2013-2014 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -99,11 +100,11 @@ msgstr "" msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -527,8 +528,8 @@ msgid "Allow mail notification" msgstr "Povolit e-mailová upozornění" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index d517e51708a..6df89c597ef 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,19 +135,19 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Yn cadw..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -155,7 +155,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -163,15 +163,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "heddiw" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ddoe" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" @@ -179,11 +179,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -191,15 +191,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "misoedd yn ôl" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "y llynedd" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "blwyddyn yn ôl" @@ -305,12 +301,12 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Gwall" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Gwall wrth rannu" @@ -374,71 +370,71 @@ msgstr "Rhannu drwy e-bost:" msgid "No people found" msgstr "Heb ganfod pobl" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grŵp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Does dim hawl ail-rannu" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Rhannwyd yn {item} â {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dad-rannu" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "yn gallu golygu" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "rheolaeth mynediad" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creu" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "diweddaru" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "dileu" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "rhannu" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Anfonwyd yr e-bost" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Rhybudd" @@ -466,7 +462,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po index ef9494360a7..6d40efa1f12 100644 --- a/l10n/cy_GB/files.po +++ b/l10n/cy_GB/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -312,8 +312,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Llwytho i fyny" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 8423265aa9d..21bd860c848 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/da/core.po b/l10n/da/core.po index fe32f8309ed..62a96c69be7 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -141,63 +141,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Gemmer..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "sidste måned" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: js/js.js:1107 -msgid "months ago" -msgstr "måneder siden" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "sidste år" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år siden" @@ -301,12 +297,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fejl" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fejl under deling" @@ -370,71 +366,71 @@ msgstr "Del via email:" msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Giv besked med mail" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan redigere" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "opret" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "opdater" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "slet" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "del" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail afsendt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Advarsel" @@ -462,7 +458,7 @@ msgstr "Rediger tags" msgid "Error loading dialog template: {error}" msgstr "Fejl ved indlæsning dialog skabelon: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ingen tags markeret til sletning." diff --git a/l10n/da/files.po b/l10n/da/files.po index 7308b092369..85e9030ae9d 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -311,8 +311,9 @@ msgid "%s could not be renamed" msgstr "%s kunne ikke omdøbes" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Upload" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index c1d8a6bf472..4d63d7d4278 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Tillad mail underretninger" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Tillad brugere at sende mail underretninger for delte filer" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/de/core.po b/l10n/de/core.po index ab11d78159e..91537915a8c 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -145,63 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Heute" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1107 -msgid "months ago" -msgstr "Vor Monaten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Vor Jahren" @@ -305,12 +301,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -374,71 +370,71 @@ msgstr "Über eine E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualisieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "löschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "teilen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-Mail wurde verschickt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -466,7 +462,7 @@ msgstr "Schlagwörter bearbeiten" msgid "Error loading dialog template: {error}" msgstr "Fehler beim Laden der Dialogvorlage: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." diff --git a/l10n/de/files.po b/l10n/de/files.po index 9d5ef4125ea..973943e7a26 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -314,8 +314,9 @@ msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Hochladen" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 9dcd7cf9ea6..573b92899fd 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -529,8 +529,8 @@ msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 9d060609c66..b09cbf82be3 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -135,135 +135,131 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "Freigeben" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "Teilung zurücknehmen" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 4aad8f931dd..bb860e55b37 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index 83997bae597..d91974e8a4b 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index a8afc9f0cae..584e5b7af39 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -144,63 +144,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Heute" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1107 -msgid "months ago" -msgstr "Vor Monaten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Vor Jahren" @@ -304,12 +300,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -373,71 +369,71 @@ msgstr "Mittels einer E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualisieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "löschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "teilen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -465,7 +461,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po index 3fb889a1c4c..36673d798da 100644 --- a/l10n/de_CH/files.po +++ b/l10n/de_CH/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -315,8 +315,9 @@ msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Hochladen" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index b3db66ec50b..4165f28b4be 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -529,7 +529,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index 665ae3cc103..ef3240473ed 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -145,63 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speichern..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Vor %n Minute" msgstr[1] "Vor %n Minuten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Vor %n Stunde" msgstr[1] "Vor %n Stunden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Heute" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "Gestern" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Vor %n Tag" msgstr[1] "Vor %n Tagen" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Vor %n Monat" msgstr[1] "Vor %n Monaten" -#: js/js.js:1107 -msgid "months ago" -msgstr "Vor Monaten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Vor Jahren" @@ -305,12 +301,12 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fehler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -374,71 +370,71 @@ msgstr "Mittels einer E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Per E-Mail informieren" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualisieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "löschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "teilen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email gesendet" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -466,7 +462,7 @@ msgstr "Schlagwörter bearbeiten" msgid "Error loading dialog template: {error}" msgstr "Fehler beim Laden der Dialogvorlage: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Es wurden keine Schlagwörter zum Löschen ausgewählt." diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index ad69e037e62..843016e5ae1 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -317,8 +317,9 @@ msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Hochladen" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index e70b8d6afd2..e769fdb0a04 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -529,8 +529,8 @@ msgid "Allow mail notification" msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/el/core.po b/l10n/el/core.po index 9b44871cb23..8b2799cf506 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 22:00+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -145,63 +145,59 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Γίνεται αποθήκευση..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n λεπτό πριν" msgstr[1] "%n λεπτά πριν" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ώρα πριν" msgstr[1] "%n ώρες πριν" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "σήμερα" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "χτες" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ημέρα πριν" msgstr[1] "%n ημέρες πριν" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n μήνας πριν" msgstr[1] "%n μήνες πριν" -#: js/js.js:1107 -msgid "months ago" -msgstr "μήνες πριν" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "χρόνια πριν" @@ -466,7 +462,7 @@ msgstr "Επεξεργασία ετικετών" msgid "Error loading dialog template: {error}" msgstr "Σφάλμα φόρτωσης προτύπου διαλόγων: {σφάλμα}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Καμμία ετικέτα δεν επιλέχθηκε για διαγραφή." diff --git a/l10n/el/files.po b/l10n/el/files.po index b2cbbde59fa..d35a622a951 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 21:50+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -313,8 +313,9 @@ msgid "%s could not be renamed" msgstr "Αδυναμία μετονομασίας του %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Μεταφόρτωση" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 667c9d73d98..72799b9f58e 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 22:10+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -529,8 +529,8 @@ msgid "Allow mail notification" msgstr "Επιτρέπονται ειδοποιήσεις ηλεκτρονικού ταχυδρομείου" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Επιτρέπει τους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index ccdc20247b6..3138530f0df 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,135 +135,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index eff254ddd36..d0ab951ca9d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index a654ee294bc..718ec237746 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/en_GB/core.po b/l10n/en_GB/core.po index c1d3f0e57d9..046deb41351 100644 --- a/l10n/en_GB/core.po +++ b/l10n/en_GB/core.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -135,63 +135,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Settings" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Saving..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "seconds ago" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "today" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "yesterday" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n day ago" msgstr[1] "%n days ago" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "last month" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: js/js.js:1107 -msgid "months ago" -msgstr "months ago" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "last year" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "years ago" @@ -295,12 +291,12 @@ msgstr "Shared" msgid "Share" msgstr "Share" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error whilst sharing" @@ -364,71 +360,71 @@ msgstr "Share via email:" msgid "No people found" msgstr "No people found" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "group" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Resharing is not allowed" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Shared in {item} with {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Unshare" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notify by email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "can edit" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "access control" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "create" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "update" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "delete" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "share" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Password protected" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error unsetting expiration date" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sending ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email sent" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warning" @@ -456,7 +452,7 @@ msgstr "Edit tags" msgid "Error loading dialog template: {error}" msgstr "Error loading dialog template: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No tags selected for deletion." diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 7f557cc15ab..8d455ef98fa 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s could not be renamed" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Upload" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index bb29a772bc7..0cc06ec6007 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 14:20+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 09:37+0000\n" "Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -49,7 +49,7 @@ msgstr "Users" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Failed to upgrade \"%s\"." @@ -74,7 +74,7 @@ msgstr "ZIP download is turned off." msgid "Files need to be downloaded one by one." msgstr "Files need to be downloaded one by one." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Back to Files" @@ -148,15 +148,15 @@ msgstr "Can't create app folder. Please fix permissions. %s" msgid "Application is not enabled" msgstr "Application is not enabled" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentication error" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expired. Please reload page." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Unknown user" @@ -290,68 +290,68 @@ msgstr "%s shared \"%s\" with you" msgid "Could not find category \"%s\"" msgstr "Could not find category \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "seconds ago" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute ago" msgstr[1] "%n minutes ago" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hour ago" msgstr[1] "%n hours ago" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "today" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "yesterday" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n day go" msgstr[1] "%n days ago" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "last month" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n month ago" msgstr[1] "%n months ago" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "last year" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "years ago" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "A valid username must be provided" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "A valid password must be provided" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "The username is already being used" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index cc2da5a6ff1..c09c1b3e9c2 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -87,17 +87,17 @@ msgstr "Unable to add group" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Files decrypted successfully" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Couldn't decrypt your files, check your password and try again" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "Allow mail notification" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/en_GB/user_ldap.po b/l10n/en_GB/user_ldap.po index ff4d53a9b77..f3cc6ffede2 100644 --- a/l10n/en_GB/user_ldap.po +++ b/l10n/en_GB/user_ldap.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 09:40+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -337,7 +337,7 @@ msgstr "Only connect to the replica server." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Case insensitive LDAP server (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/eo/core.po b/l10n/eo/core.po index b8d7904c2ab..50da857e625 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Agordo" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Konservante..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "antaŭ %n minuto" msgstr[1] "antaŭ %n minutoj" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "antaŭ %n horo" msgstr[1] "antaŭ %n horoj" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hodiaŭ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "antaŭ %n tago" msgstr[1] "antaŭ %n tagoj" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "lastamonate" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "antaŭ %n monato" msgstr[1] "antaŭ %n monatoj" -#: js/js.js:1107 -msgid "months ago" -msgstr "monatoj antaŭe" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "lastajare" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "jaroj antaŭe" @@ -296,12 +292,12 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Eraro" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -365,71 +361,71 @@ msgstr "Kunhavigi per retpoŝto:" msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "avizi per retpoŝto" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "povas redakti" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "krei" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "forigi" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "kunhavigi" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Averto" @@ -457,7 +453,7 @@ msgstr "Redakti etikedojn" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Neniu etikedo elektitas por forigo." diff --git a/l10n/eo/files.po b/l10n/eo/files.po index 76864720d2a..73a096c2838 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s ne povis alinomiĝi" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Alŝuti" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 4956bdbd6f3..b5865f264bc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/es/core.po b/l10n/es/core.po index 7d5a15c84f2..621c192338e 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -148,63 +148,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ajustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses antes" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "el año pasado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años antes" @@ -308,12 +304,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al compartir" @@ -377,71 +373,71 @@ msgstr "Compartir por correo electrónico:" msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar por correo electrónico" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "puede editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control de acceso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crear" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "eliminar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartir" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Precaución" @@ -469,7 +465,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Error cargando plantilla de diálogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No hay etiquetas seleccionadas para borrar." diff --git a/l10n/es/files.po b/l10n/es/files.po index e58112bd597..9ea5a0b1796 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -316,8 +316,9 @@ msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 96c24139d36..e9254d48a3f 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -534,8 +534,8 @@ msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index 2fd6e336532..aa1b502cbe3 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuración" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "el año pasado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años atrás" @@ -296,12 +292,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al compartir" @@ -365,71 +361,71 @@ msgstr "Compartir a través de e-mail:" msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar por correo" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "podés editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control de acceso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crear" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "borrar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartir" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "e-mail mandado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Atención" @@ -457,7 +453,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Error cargando la plantilla de dialogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No se han seleccionado etiquetas para eliminar." diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index fdd48c933e9..490d277f87d 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "No se pudo renombrar %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 748f37b09e6..ec1a2c9acc8 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Permitir notificaciones por correo" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir al usuario enviar notificaciones por correo para archivos compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/es_CL/core.po b/l10n/es_CL/core.po index 34129f3ca73..0ea25ef3cb0 100644 --- a/l10n/es_CL/core.po +++ b/l10n/es_CL/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -135,63 +135,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuración" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mes anterior" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses antes" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "último año" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años anteriores" @@ -295,12 +291,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Ocurrió un error mientras compartía" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po index 72fa40ee9c2..275606fec55 100644 --- a/l10n/es_CL/files.po +++ b/l10n/es_CL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index c490d88121d..89776c457b6 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/es_CR/core.po b/l10n/es_CR/core.po new file mode 100644 index 00000000000..bc873a13136 --- /dev/null +++ b/l10n/es_CR/core.po @@ -0,0 +1,805 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:87 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:119 ajax/share.php:161 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:10 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:13 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:16 +msgid "Updated database" +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 +msgid "January" +msgstr "" + +#: js/config.php:48 +msgid "February" +msgstr "" + +#: js/config.php:49 +msgid "March" +msgstr "" + +#: js/config.php:50 +msgid "April" +msgstr "" + +#: js/config.php:51 +msgid "May" +msgstr "" + +#: js/config.php:52 +msgid "June" +msgstr "" + +#: js/config.php:53 +msgid "July" +msgstr "" + +#: js/config.php:54 +msgid "August" +msgstr "" + +#: js/config.php:55 +msgid "September" +msgstr "" + +#: js/config.php:56 +msgid "October" +msgstr "" + +#: js/config.php:57 +msgid "November" +msgstr "" + +#: js/config.php:58 +msgid "December" +msgstr "" + +#: js/js.js:489 +msgid "Settings" +msgstr "" + +#: js/js.js:589 +msgid "Saving..." +msgstr "" + +#: js/js.js:1246 +msgid "seconds ago" +msgstr "" + +#: js/js.js:1247 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1248 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1249 +msgid "today" +msgstr "" + +#: js/js.js:1250 +msgid "yesterday" +msgstr "" + +#: js/js.js:1251 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1252 +msgid "last month" +msgstr "" + +#: js/js.js:1253 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1254 +msgid "last year" +msgstr "" + +#: js/js.js:1255 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:125 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:151 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:187 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:204 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:224 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:352 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:366 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:372 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:373 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:375 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:384 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:394 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:466 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 +#: templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:790 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:385 +msgid "group" +msgstr "" + +#: js/share.js:357 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:401 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:423 +msgid "Unshare" +msgstr "" + +#: js/share.js:431 +msgid "notify by email" +msgstr "" + +#: js/share.js:434 +msgid "can edit" +msgstr "" + +#: js/share.js:436 +msgid "access control" +msgstr "" + +#: js/share.js:439 +msgid "create" +msgstr "" + +#: js/share.js:442 +msgid "update" +msgstr "" + +#: js/share.js:445 +msgid "delete" +msgstr "" + +#: js/share.js:448 +msgid "share" +msgstr "" + +#: js/share.js:721 +msgid "Password protected" +msgstr "" + +#: js/share.js:734 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:752 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:777 +msgid "Sending ..." +msgstr "" + +#: js/share.js:788 +msgid "Email sent" +msgstr "" + +#: js/share.js:812 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:264 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"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:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: setup/controller.php:140 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:144 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/es_CR/files.po b/l10n/es_CR/files.po new file mode 100644 index 00000000000..0a682b7b72c --- /dev/null +++ b/l10n/es_CR/files.po @@ -0,0 +1,409 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:15 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:25 ajax/move.php:28 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:58 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:63 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:97 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:102 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:146 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:22 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:66 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:57 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:33 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:75 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:82 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:83 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:85 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:86 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:87 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:88 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:89 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:107 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:169 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:179 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:194 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:254 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:266 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:276 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:353 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:398 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:490 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:555 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:559 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:561 js/filelist.js:585 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:613 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:626 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:666 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:164 +msgid "Share" +msgstr "" + +#: js/fileactions.js:177 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:238 +msgid "Rename" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "" + +#: js/filelist.js:251 js/filelist.js:1129 +msgid "Pending" +msgstr "" + +#: js/filelist.js:612 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:775 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:808 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:1037 js/filelist.js:1076 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:331 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:570 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:571 templates/index.php:79 +msgid "Size" +msgstr "" + +#: js/files.js:572 templates/index.php:81 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:93 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:22 +#, php-format +msgid "Upload (max. %s)" +msgstr "" + +#: templates/admin.php:4 +msgid "File handling" +msgstr "" + +#: templates/admin.php:6 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:9 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:14 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:16 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:19 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:21 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:25 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "New folder" +msgstr "" + +#: templates/index.php:13 +msgid "Folder" +msgstr "" + +#: templates/index.php:16 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:45 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:51 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:56 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:84 templates/index.php:85 +msgid "Delete" +msgstr "" + +#: templates/index.php:96 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:98 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:103 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:106 +msgid "Current scanning" +msgstr "" diff --git a/l10n/es_CR/files_encryption.po b/l10n/es_CR/files_encryption.po new file mode 100644 index 00000000000..c2e3a2ba8c6 --- /dev/null +++ b/l10n/es_CR/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:2 templates/settings-personal.php:2 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:5 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:9 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:12 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:19 templates/settings-personal.php:50 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:27 templates/settings-personal.php:58 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:32 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:38 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:45 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:51 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:56 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:8 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:13 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:21 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:27 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:32 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:41 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:43 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:59 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/es_CR/files_external.po b/l10n/es_CR/files_external.po new file mode 100644 index 00000000000..267cf48a036 --- /dev/null +++ b/l10n/es_CR/files_external.po @@ -0,0 +1,136 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:318 js/settings.js:325 +msgid "Saved" +msgstr "" + +#: lib/config.php:598 +msgid "Note: " +msgstr "" + +#: lib/config.php:608 +msgid " and " +msgstr "" + +#: lib/config.php:630 +#, php-format +msgid "" +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:632 +#, php-format +msgid "" +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:634 +#, php-format +msgid "" +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:2 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:27 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:9 +msgid "External storage" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Available for" +msgstr "" + +#: templates/settings.php:32 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:92 +msgid "No user or group" +msgstr "" + +#: templates/settings.php:95 +msgid "All Users" +msgstr "" + +#: templates/settings.php:97 +msgid "Groups" +msgstr "" + +#: templates/settings.php:105 +msgid "Users" +msgstr "" + +#: templates/settings.php:118 templates/settings.php:119 +#: templates/settings.php:158 templates/settings.php:159 +msgid "Delete" +msgstr "" + +#: templates/settings.php:132 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:135 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:150 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:168 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/es_CR/files_sharing.po b/l10n/es_CR/files_sharing.po new file mode 100644 index 00000000000..904ff6bff9f --- /dev/null +++ b/l10n/es_CR/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:33 +msgid "Shared by {owner}" +msgstr "" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/es_CR/files_trashbin.po b/l10n/es_CR/files_trashbin.po new file mode 100644 index 00000000000..4b692737a29 --- /dev/null +++ b/l10n/es_CR/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:3 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 +msgid "Error" +msgstr "" + +#: js/trash.js:62 templates/index.php:22 templates/index.php:24 +msgid "Restore" +msgstr "" + +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:861 lib/trashbin.php:863 +msgid "restored" +msgstr "" + +#: templates/index.php:6 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:19 +msgid "Name" +msgstr "" + +#: templates/index.php:30 +msgid "Deleted" +msgstr "" + +#: templates/index.php:33 templates/index.php:34 +msgid "Delete" +msgstr "" diff --git a/l10n/es_CR/files_versions.po b/l10n/es_CR/files_versions.po new file mode 100644 index 00000000000..c057c867687 --- /dev/null +++ b/l10n/es_CR/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:39 +msgid "Versions" +msgstr "" + +#: js/versions.js:61 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:88 +msgid "More versions..." +msgstr "" + +#: js/versions.js:126 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:156 +msgid "Restore" +msgstr "" diff --git a/l10n/es_CR/lib.po b/l10n/es_CR/lib.po new file mode 100644 index 00000000000..e4276b217ee --- /dev/null +++ b/l10n/es_CR/lib.po @@ -0,0 +1,356 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:880 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:232 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:233 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:234 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:259 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:260 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:62 private/json.php:87 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:74 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:202 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:203 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:134 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:135 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:137 +msgid "today" +msgstr "" + +#: private/template/functions.php:138 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:140 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:142 +msgid "last month" +msgstr "" + +#: private/template/functions.php:143 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:145 +msgid "last year" +msgstr "" + +#: private/template/functions.php:146 +msgid "years ago" +msgstr "" + +#: private/user/manager.php:232 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:237 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:241 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:246 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/es_CR/settings.po b/l10n/es_CR/settings.po new file mode 100644 index 00000000000..a49c9deae0b --- /dev/null +++ b/l10n/es_CR/settings.po @@ -0,0 +1,838 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:299 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:336 +msgid "Authentication method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:17 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:36 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:68 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:73 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:81 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:86 changepassword/controller.php:97 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:55 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:243 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:313 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:48 personal.php:49 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:47 templates/admin.php:61 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:50 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:64 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file 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." +msgstr "" + +#: templates/admin.php:75 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:79 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:90 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:93 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:104 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:107 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:118 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:123 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:127 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:131 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:143 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:146 +msgid "" +"This 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." +msgstr "" + +#: templates/admin.php:160 +msgid "Cron" +msgstr "" + +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:192 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:200 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:205 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:211 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:212 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:219 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:220 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:228 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:236 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:243 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:246 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:253 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:254 +msgid "Allow users to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:261 +msgid "Security" +msgstr "" + +#: templates/admin.php:274 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:276 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:282 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:294 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:296 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:327 +msgid "From address" +msgstr "" + +#: templates/admin.php:349 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:353 +msgid "Server address" +msgstr "" + +#: templates/admin.php:357 +msgid "Port" +msgstr "" + +#: templates/admin.php:362 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:363 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:366 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:370 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:371 +msgid "Send email" +msgstr "" + +#: templates/admin.php:376 +msgid "Log" +msgstr "" + +#: templates/admin.php:377 +msgid "Log level" +msgstr "" + +#: templates/admin.php:409 +msgid "More" +msgstr "" + +#: templates/admin.php:410 +msgid "Less" +msgstr "" + +#: templates/admin.php:416 templates/personal.php:171 +msgid "Version" +msgstr "" + +#: templates/admin.php:420 templates/personal.php:174 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:38 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:43 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:49 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:51 +msgid "See application website" +msgstr "" + +#: templates/apps.php:53 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:39 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:40 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:45 +msgid "New password" +msgstr "" + +#: templates/personal.php:49 +msgid "Change password" +msgstr "" + +#: templates/personal.php:61 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:76 +msgid "Email" +msgstr "" + +#: templates/personal.php:78 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:81 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:89 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:94 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:96 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:97 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:98 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:100 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:104 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:105 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:111 templates/personal.php:112 +msgid "Language" +msgstr "" + +#: templates/personal.php:131 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:151 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:157 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:162 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/es_CR/user_ldap.po b/l10n/es_CR/user_ldap.po new file mode 100644 index 00000000000..851e23536fe --- /dev/null +++ b/l10n/es_CR/user_ldap.po @@ -0,0 +1,534 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:983 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitive LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:45 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:45 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:46 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:47 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:47 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:54 +msgid "" +"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. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:55 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:56 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:57 +msgid "" +"By default, the UUID attribute is automatically detected. 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 behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:59 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:60 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "" +"Usernames are used 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 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. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/es_CR/user_webdavauth.po b/l10n/es_CR/user_webdavauth.po new file mode 100644 index 00000000000..479fa6b5460 --- /dev/null +++ b/l10n/es_CR/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:45+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:2 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:3 +msgid "Address: " +msgstr "" + +#: templates/settings.php:6 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/es_MX/core.po b/l10n/es_MX/core.po index 0bd714df555..50fd808eba7 100644 --- a/l10n/es_MX/core.po +++ b/l10n/es_MX/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -134,63 +134,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ajustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos antes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoy" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ayer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses antes" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "el año pasado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "años antes" @@ -294,12 +290,12 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al compartir" @@ -363,71 +359,71 @@ msgstr "Compartir por correo electrónico:" msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar al usuario por correo electrónico" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "puede editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control de acceso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crear" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "eliminar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartir" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Correo electrónico enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Precaución" @@ -455,7 +451,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Error cargando plantilla de diálogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "No hay etiquetas seleccionadas para borrar." diff --git a/l10n/es_MX/files.po b/l10n/es_MX/files.po index aeb5e6cc2e5..76bbff5f42c 100644 --- a/l10n/es_MX/files.po +++ b/l10n/es_MX/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Subir" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es_MX/settings.po b/l10n/es_MX/settings.po index 35e71a9ae31..d94130c8657 100644 --- a/l10n/es_MX/settings.po +++ b/l10n/es_MX/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -520,8 +520,8 @@ msgid "Allow mail notification" msgstr "Permitir notificaciones por correo electrónico" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 4a36dbbeeac..568a8dd44af 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Seaded" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Salvestamine..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "täna" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "eile" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:1107 -msgid "months ago" -msgstr "kuu tagasi" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "aastat tagasi" @@ -296,12 +292,12 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Viga" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -365,71 +361,71 @@ msgstr "Jaga e-postiga:" msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "teavita e-postiga" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "saab muuta" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "loo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uuenda" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "kustuta" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "jaga" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-kiri on saadetud" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Hoiatus" @@ -457,7 +453,7 @@ msgstr "Muuda silte" msgid "Error loading dialog template: {error}" msgstr "Viga dialoogi malli laadimisel: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Kustutamiseks pole ühtegi silti valitud." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index dd21c64115f..6dd46cb0f2c 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s ümbernimetamine ebaõnnestus" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Lae üles" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 3a21e4d2e57..8aa434c9821 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Luba teavitused e-postiga" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/eu/core.po b/l10n/eu/core.po index f13fab969cd..118be3c55c7 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Gordetzen..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundu" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "gaur" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "atzo" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: js/js.js:1107 -msgid "months ago" -msgstr "hilabete" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "joan den urtean" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "urte" @@ -296,12 +292,12 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Errorea" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -365,71 +361,71 @@ msgstr "Elkarbanatu eposta bidez:" msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "taldea" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "jakinarazi eposta bidez" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "sortu" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "eguneratu" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ezabatu" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "elkarbanatu" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Eposta bidalia" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Abisua" @@ -457,7 +453,7 @@ msgstr "Editatu etiketak" msgid "Error loading dialog template: {error}" msgstr "Errorea elkarrizketa txantiloia kargatzean: {errorea}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ez dira ezabatzeko etiketak hautatu." diff --git a/l10n/eu/files.po b/l10n/eu/files.po index 139d567f5f5..281fc74b73d 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s ezin da berrizendatu" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Igo" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index a66de5fe05a..68512ff41a1 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Baimendu posta bidezko jakinarazpenak" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/eu_ES/core.po b/l10n/eu_ES/core.po index 767e8da8b59..dff837b3f78 100644 --- a/l10n/eu_ES/core.po +++ b/l10n/eu_ES/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Ezeztatu" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/eu_ES/files.po b/l10n/eu_ES/files.po index ee74198632a..2d1e2e9f998 100644 --- a/l10n/eu_ES/files.po +++ b/l10n/eu_ES/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index e0571110ac9..95737685dab 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 1eb4ee73498..3011d8ffd55 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,59 +135,55 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "در حال ذخیره سازی..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "امروز" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "دیروز" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ماه قبل" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "ماه‌های قبل" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "سال قبل" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "سال‌های قبل" @@ -290,12 +286,12 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراک‌گذاری" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "خطا" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -359,71 +355,71 @@ msgstr "از طریق ایمیل به اشتراک بگذارید :" msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "گروه" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "ایجاد" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "به روز" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "پاک کردن" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ایمیل ارسال شد" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "اخطار" @@ -451,7 +447,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 969a816852d..938b248e100 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -305,8 +305,9 @@ msgid "%s could not be renamed" msgstr "%s نمیتواند تغییر نام دهد." #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "بارگزاری" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 6a301250d5c..52107ad5133 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "مجاز نمودن اطلاع رسانی توسط ایمیل" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "مجاز نمودن ارسال ایمیل توسط کاربر برای فایل‌های به اشتراک گذاشته شده" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 766a2aee427..85365774190 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -137,63 +137,59 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Asetukset" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Tallennetaan..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "tänään" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "eilen" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "viime kuussa" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: js/js.js:1107 -msgid "months ago" -msgstr "kuukautta sitten" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "viime vuonna" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "vuotta sitten" @@ -297,12 +293,12 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Virhe" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -366,71 +362,71 @@ msgstr "Jaa sähköpostilla:" msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "ryhmä" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{item} on jaettu {user} kanssa" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "ilmoita sähköpostitse" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "voi muokata" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "luo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "päivitä" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "poista" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "jaa" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Sähköposti lähetetty" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Varoitus" @@ -458,7 +454,7 @@ msgstr "Muokkaa tunnisteita" msgid "Error loading dialog template: {error}" msgstr "Virhe ladatessa keskustelupohja: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Tunnisteita ei valittu poistettavaksi." diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index aebd22bd7fd..6cf56c8282b 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "kohteen %s nimeäminen uudelleen epäonnistui" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Lähetä" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index c1d806b8df3..a29b87e036b 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "Salli sähköposti-ilmoitukset" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 177563180d1..bf908d51b70 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -142,63 +142,59 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Paramètres" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Enregistrement..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "il y a %n minute" msgstr[1] "il y a %n minutes" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Il y a %n heure" msgstr[1] "Il y a %n heures" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "aujourd'hui" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "hier" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "il y a %n jour" msgstr[1] "il y a %n jours" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "le mois dernier" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Il y a %n mois" msgstr[1] "Il y a %n mois" -#: js/js.js:1107 -msgid "months ago" -msgstr "il y a plusieurs mois" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "l'année dernière" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "il y a plusieurs années" @@ -302,12 +298,12 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Erreur" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -371,71 +367,71 @@ msgstr "Partager via e-mail :" msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "groupe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Notifier par email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "créer" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "mettre à jour" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "supprimer" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "partager" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email envoyé" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Attention" @@ -463,7 +459,7 @@ msgstr "Modifier les balises" msgid "Error loading dialog template: {error}" msgstr "Erreur de chargement du modèle de dialogue : {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Aucune balise sélectionnée pour la suppression." diff --git a/l10n/fr/files.po b/l10n/fr/files.po index f82038376f9..84a033faa67 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -311,8 +311,9 @@ msgid "%s could not be renamed" msgstr "%s ne peut être renommé" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Envoyer" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index f2b3a03c20b..ab5c1b50a56 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: RyDroid \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -531,8 +531,8 @@ msgid "Allow mail notification" msgstr "Autoriser les notifications par couriel" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fr_CA/core.po b/l10n/fr_CA/core.po index cc4a62b68dd..53de5d6a0db 100644 --- a/l10n/fr_CA/core.po +++ b/l10n/fr_CA/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/fr_CA/files.po b/l10n/fr_CA/files.po index 72448b63f63..892e66ce56c 100644 --- a/l10n/fr_CA/files.po +++ b/l10n/fr_CA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po index dab733306ef..f1172880703 100644 --- a/l10n/fr_CA/settings.po +++ b/l10n/fr_CA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 75ebd80fdfc..4485652cebc 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-19 01:55-0400\n" -"PO-Revision-Date: 2014-04-18 11:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Axustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Gardando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "hai %n minuto" msgstr[1] "hai %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "hai %n hora" msgstr[1] "hai %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoxe" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "onte" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "hai %n día" msgstr[1] "vai %n días" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "último mes" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "hai %n mes" msgstr[1] "hai %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "último ano" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anos atrás" @@ -457,7 +453,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Produciuse un erro ao cargar o modelo do dialogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Non se seleccionaron etiquetas para borrado." diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 6d21e746148..a7930014cc1 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s non pode cambiar de nome" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Enviar" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 2b8f1ed4fb3..03e60c26d9c 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Permitir o envío de notificacións por correo" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/he/core.po b/l10n/he/core.po index 0d82a12dc92..e1f1cdc21e1 100644 --- a/l10n/he/core.po +++ b/l10n/he/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "הגדרות" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "שמירה…" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "שניות" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "לפני %n דקה" msgstr[1] "לפני %n דקות" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "לפני %n שעה" msgstr[1] "לפני %n שעות" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "היום" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "אתמול" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "לפני %n יום" msgstr[1] "לפני %n ימים" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "לפני %n חודש" msgstr[1] "לפני %n חודשים" -#: js/js.js:1107 -msgid "months ago" -msgstr "חודשים" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "שנים" @@ -296,12 +292,12 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "שגיאה" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -365,71 +361,71 @@ msgstr "שיתוף באמצעות דוא״ל:" msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "קבוצה" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "יצירה" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "עדכון" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "מחיקה" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "שיתוף" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "אזהרה" @@ -457,7 +453,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/he/files.po b/l10n/he/files.po index ad260a38e13..bb48eacb83f 100644 --- a/l10n/he/files.po +++ b/l10n/he/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "העלאה" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 3445981b768..a28368def9c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 571197dfa46..2ec39b52353 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -296,12 +292,12 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "त्रुटि" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -365,71 +361,71 @@ msgstr "" msgid "No people found" msgstr "कोई व्यक्ति नहीं मिले " -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "भेजा जा रहा है" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ईमेल भेज दिया गया है " -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "चेतावनी " @@ -457,7 +453,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index e67b344c20e..96c95a364f7 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "अपलोड " +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index e529f84564b..359c0fbdfd4 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 739b25a88d9..b8629d3634f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,67 +134,63 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Postavke" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Spremanje..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "danas" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "jučer" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "mjeseci" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "godina" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -368,71 +364,71 @@ msgstr "Dijeli preko email-a:" msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "kreiraj" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ažuriraj" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "izbriši" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "djeli" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 0074b6dec57..530f648abb4 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Učitaj" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 16655c2363c..7701040cd59 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index b37aaff518e..1169062c0ed 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Beállítások" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Mentés..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n perccel ezelőtt" msgstr[1] "%n perccel ezelőtt" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ma" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "tegnap" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: js/js.js:1107 -msgid "months ago" -msgstr "több hónapja" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "tavaly" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "több éve" @@ -297,12 +293,12 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Hiba" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -366,71 +362,71 @@ msgstr "Megosztás emaillel:" msgid "No people found" msgstr "Nincs találat" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "csoport" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "email értesítés" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "módosíthat" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "jogosultság" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "létrehoz" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "szerkeszt" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "töröl" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "megoszt" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Az emailt elküldtük" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Figyelmeztetés" @@ -458,7 +454,7 @@ msgstr "Címkék szerkesztése" msgid "Error loading dialog template: {error}" msgstr "Hiba a párbeszédpanel-sablon betöltésekor: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nincs törlésre kijelölt címke." diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 1dc8cba47ab..b3717afaecf 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s átnevezése nem sikerült" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Feltöltés" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index ca7929dce22..8fadff9a291 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "E-mail értesítések engedélyezése" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról." +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 92b8b8c3854..dc7320cd4d5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "Նոյեմբեր" msgid "December" msgstr "Դեկտեմբեր" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 83025c434df..4a376c61895 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index b2d395b9e79..ff928e69b36 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ia/core.po b/l10n/ia/core.po index a269263e659..4df7c41aab0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configurationes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Leva compartir" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pote modificar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 3110f2fd877..8d845151f71 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Incargar" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 96587324349..4d49d8b7bd6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/id/core.po b/l10n/id/core.po index 2ba78033e39..b0a81a4b5b6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Pengaturan" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Menyimpan..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n menit yang lalu" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n jam yang lalu" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hari ini" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "kemarin" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n hari yang lalu" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n bulan yang lalu" -#: js/js.js:1107 -msgid "months ago" -msgstr "beberapa bulan lalu" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "beberapa tahun lalu" @@ -289,12 +285,12 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Galat" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Galat ketika membagikan" @@ -358,71 +354,71 @@ msgstr "Bagian lewat email:" msgid "No people found" msgstr "Tidak ada orang ditemukan" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grup" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Batalkan berbagi" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notifikasi via email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "dapat sunting" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrol akses" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "buat" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "perbarui" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "hapus" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "bagikan" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Sandi dilindungi" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Galat ketika mengatur tanggal kedaluwarsa" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email terkirim" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Peringatan" @@ -450,7 +446,7 @@ msgstr "Sunting tag" msgid "Error loading dialog template: {error}" msgstr "Galat memuat templat dialog: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Tidak ada tag yang terpilih untuk dihapus." diff --git a/l10n/id/files.po b/l10n/id/files.po index 7b7f991bc78..2344f6033d8 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -304,8 +304,9 @@ msgid "%s could not be renamed" msgstr "%s tidak dapat diubah nama" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Unggah" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 1c9446d3d26..c1fe83f4b4d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,8 +520,8 @@ msgid "Allow mail notification" msgstr "Izinkan pemberitahuan email" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/is/core.po b/l10n/is/core.po index e1f48b77a89..fd246d9bcad 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Stillingar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Er að vista ..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sek." -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "í dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "í gær" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "mánuðir síðan" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "síðasta ári" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "einhverjum árum" @@ -295,12 +291,12 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Villa" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -364,71 +360,71 @@ msgstr "Deila með tölvupósti:" msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "getur breytt" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "mynda" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uppfæra" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "eyða" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deila" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Tölvupóstur sendur" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Aðvörun" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/is/files.po b/l10n/is/files.po index 9453eebd352..cdaed9930ac 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Senda inn" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 3e64391c268..5ed711d9c12 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/it/core.po b/l10n/it/core.po index 02025132f43..1f492f01723 100644 --- a/l10n/it/core.po +++ b/l10n/it/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,63 +138,59 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Salvataggio in corso..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "oggi" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ieri" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mese scorso" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: js/js.js:1107 -msgid "months ago" -msgstr "mesi fa" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "anno scorso" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anni fa" @@ -298,12 +294,12 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Errore" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -367,71 +363,71 @@ msgstr "Condividi tramite email:" msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notifica tramite email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "può modificare" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creare" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aggiornare" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "elimina" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "condividi" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Messaggio inviato" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Avviso" @@ -459,7 +455,7 @@ msgstr "Modifica etichette" msgid "Error loading dialog template: {error}" msgstr "Errore durante il caricamento del modello di finestra: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nessuna etichetta selezionata per l'eliminazione." diff --git a/l10n/it/files.po b/l10n/it/files.po index 82da73f8ebf..487dde50100 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s non può essere rinominato" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Carica" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 2df8f3a8210..13bbcdee323 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Consenti le notifiche tramite posta elettronica" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ja/core.po b/l10n/ja/core.po index cf2f3a1df32..18f71bf6148 100644 --- a/l10n/ja/core.po +++ b/l10n/ja/core.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -140,59 +140,55 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "設定" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "保存中..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間前" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今日" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨日" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n日前" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "1ヶ月前" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%nヶ月前" -#: js/js.js:1107 -msgid "months ago" -msgstr "数ヶ月前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "1年前" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "数年前" @@ -295,12 +291,12 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "エラー" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -364,71 +360,71 @@ msgstr "メール経由で共有:" msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "グループ" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "共有解除" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "メールで通知" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "編集を許可" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "アクセス権限" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "作成" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "アップデート" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "削除" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "共有" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "メールを送信しました" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "警告" @@ -456,7 +452,7 @@ msgstr "タグを編集" msgid "Error loading dialog template: {error}" msgstr "メッセージテンプレートの読み込みエラー: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "削除するタグが選択されていません。" diff --git a/l10n/ja/files.po b/l10n/ja/files.po index 2b916be565a..cc1723751b1 100644 --- a/l10n/ja/files.po +++ b/l10n/ja/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%sの名前を変更できませんでした" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "アップロード" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index cf815cf2875..449ce5efff8 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -525,8 +525,8 @@ msgid "Allow mail notification" msgstr "メール通知を許可" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "共有ファイルに関するメール通知の送信をユーザーに許可する" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/jv/core.po b/l10n/jv/core.po index 17dbc1170a8..64f25812fdb 100644 --- a/l10n/jv/core.po +++ b/l10n/jv/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/jv/files.po b/l10n/jv/files.po index 010013ec49a..5b2f6e443bb 100644 --- a/l10n/jv/files.po +++ b/l10n/jv/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-07 17:00+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/jv/settings.po b/l10n/jv/settings.po index fad4b719109..fe9b21e6e5c 100644 --- a/l10n/jv/settings.po +++ b/l10n/jv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index c8b1e65a00f..41fcdca0f53 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "შენახვა..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "დღეს" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "თვის წინ" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "წლის წინ" @@ -289,12 +285,12 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "შეცდომა" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -358,71 +354,71 @@ msgstr "გააზიარე მეილზე" msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "ჯგუფი" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "გაუზიარებადი" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "შექმნა" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "განახლება" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "წაშლა" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "გაზიარება" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "იმეილი გაიგზავნა" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "გაფრთხილება" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 9a05853f50b..92c896554ff 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "ატვირთვა" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index f4d3be05884..63260285df5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/km/core.po b/l10n/km/core.po index 15f1347c385..087b7e596ad 100644 --- a/l10n/km/core.po +++ b/l10n/km/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -135,59 +135,55 @@ msgstr "ខែវិច្ឆិកា" msgid "December" msgstr "ខែធ្នូ" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "ការកំណត់" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "កំពុង​រក្សាទុក" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "វិនាទី​មុន" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n នាទី​មុន" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ម៉ោង​មុន" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ថ្ងៃនេះ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ម្សិលមិញ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ថ្ងៃ​មុន" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ខែមុន" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ខែ​មុន" -#: js/js.js:1107 -msgid "months ago" -msgstr "ខែ​មុន" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ឆ្នាំ​មុន" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ឆ្នាំ​មុន" @@ -290,12 +286,12 @@ msgstr "បាន​ចែក​រំលែក" msgid "Share" msgstr "ចែក​រំលែក" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "កំហុស" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "កំហុស​ពេល​ចែក​រំលែក" @@ -359,71 +355,71 @@ msgstr "ចែក​រំលែក​តាម​អ៊ីមែល៖" msgid "No people found" msgstr "រក​មិន​ឃើញ​មនុស្ស​ណា​ម្នាក់" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "ក្រុម" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "មិន​អនុញ្ញាត​ឲ្យ​មាន​ការ​ចែក​រំលែក​ឡើង​វិញ" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "បាន​ចែក​រំលែក​ក្នុង {item} ជាមួយ {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "លែង​ចែក​រំលែក" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "អាច​កែប្រែ" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "សិទ្ធិ​បញ្ជា" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "បង្កើត" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ធ្វើ​បច្ចុប្បន្នភាព" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "លុប" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "ចែក​រំលែក" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "បាន​ការ​ពារ​ដោយ​ពាក្យ​សម្ងាត់" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "កំពុង​ផ្ញើ ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "បាន​ផ្ញើ​អ៊ីមែល" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "បម្រាម" @@ -451,7 +447,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/km/files.po b/l10n/km/files.po index 3a2dbcd7c21..16c907800e2 100644 --- a/l10n/km/files.po +++ b/l10n/km/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "ផ្ទុក​ឡើង" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index e4144427d51..23a00b4f698 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -522,7 +522,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/kn/core.po b/l10n/kn/core.po index 0d2fc8f5d55..77ca23e3f58 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 0476da9576d..2ff94b7e645 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index c8d82c665e4..7249040d4fc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 3cccdaed7a6..302d5860f1c 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -141,59 +141,55 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "설정" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "저장 중..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "초 전" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "오늘" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "어제" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "지난 달" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: js/js.js:1107 -msgid "months ago" -msgstr "개월 전" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "작년" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "년 전" @@ -296,12 +292,12 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "오류" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -365,71 +361,71 @@ msgstr "이메일로 공유:" msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "그룹" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "이메일로 알림" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "편집 가능" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "접근 제어" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "생성" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "업데이트" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "삭제" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "공유" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "이메일 발송됨" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "경고" @@ -457,7 +453,7 @@ msgstr "태그 편집" msgid "Error loading dialog template: {error}" msgstr "대화 상자 템플릿을 불러오는 중 오류 발생: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "삭제할 태그를 선택하지 않았습니다." diff --git a/l10n/ko/files.po b/l10n/ko/files.po index a186b4fa9be..d66a039e178 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "%s의 이름을 변경할 수 없습니다" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "업로드" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 8ebaba25f09..2c0186c6f76 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -525,8 +525,8 @@ msgid "Allow mail notification" msgstr "메일 알림 허용" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "사용자에게 공유 파일에 대한 메일 알림을 허용합니다" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 54a062281ae..b27679a5290 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "هاوبەشی کردن" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "هه‌ڵه" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "ئاگاداری" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 854076585ab..48266f0cc6b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "بارکردن" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index fa631b8021f..ac3dc088f0a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/lb/core.po b/l10n/lb/core.po index aae46a0cf88..7b83600de6a 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Astellungen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Speicheren..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n Minutt hir" msgstr[1] "%n Minutten hir" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "haut" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "gëschter" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "leschte Mount" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "Méint hir" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "Joren hir" @@ -296,12 +292,12 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Feeler" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Feeler beim Deelen" @@ -365,71 +361,71 @@ msgstr "Via E-Mail deelen:" msgid "No people found" msgstr "Keng Persoune fonnt" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Grupp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Gedeelt an {item} mat {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "via e-mail Bescheed ginn" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kann änneren" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Zougrëffskontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "erstellen" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualiséieren" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "läschen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deelen" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email geschéckt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Warnung" @@ -457,7 +453,7 @@ msgstr "Tags editéieren" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index c2a3c2079ad..7c7f917f67b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Eroplueden" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 6d37f4bd60a..2f42e135ceb 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 3b56f1e5fa6..43b150af1af 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -139,67 +139,63 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Saugoma..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " prieš %n minutę" msgstr[1] " prieš %n minučių" msgstr[2] " prieš %n minučių" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "prieš %n valandą" msgstr[1] "prieš %n valandų" msgstr[2] "prieš %n valandų" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "šiandien" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "vakar" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "prieš %n dieną" msgstr[1] "prieš %n dienas" msgstr[2] "prieš %n dienų" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "prieš %n mėnesį" msgstr[1] "prieš %n mėnesius" msgstr[2] "prieš %n mėnesių" -#: js/js.js:1107 -msgid "months ago" -msgstr "prieš mėnesį" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "praeitais metais" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "prieš metus" @@ -304,12 +300,12 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Klaida" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -373,71 +369,71 @@ msgstr "Dalintis per el. paštą:" msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupė" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Nebesidalinti" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "pranešti el. paštu" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "sukurti" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "atnaujinti" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ištrinti" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "dalintis" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Laiškas išsiųstas" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Įspėjimas" @@ -465,7 +461,7 @@ msgstr "Redaguoti žymes" msgid "Error loading dialog template: {error}" msgstr "Klaida įkeliant dialogo ruošinį: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Trynimui nepasirinkta jokia žymė." diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index e6d1e3c0007..c0027ad3215 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -312,8 +312,9 @@ msgid "%s could not be renamed" msgstr "%s negali būti pervadintas" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Įkelti" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 9d6419643c1..1d104c21979 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -525,8 +525,8 @@ msgid "Allow mail notification" msgstr "Leisti el. pašto perspėjimą" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 2d6b65f4cce..57162fa281f 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,67 +135,63 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Saglabā..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Tagad, %n minūtes" msgstr[1] "Pirms %n minūtes" msgstr[2] "Pirms %n minūtēm" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Šodien, %n stundas" msgstr[1] "Pirms %n stundas" msgstr[2] "Pirms %n stundām" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "šodien" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "vakar" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Šodien, %n dienas" msgstr[1] "Pirms %n dienas" msgstr[2] "Pirms %n dienām" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Šomēnes, %n mēneši" msgstr[1] "Pirms %n mēneša" msgstr[2] "Pirms %n mēnešiem" -#: js/js.js:1107 -msgid "months ago" -msgstr "mēnešus atpakaļ" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "gadus atpakaļ" @@ -300,12 +296,12 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Kļūda" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -369,71 +365,71 @@ msgstr "Dalīties, izmantojot e-pastu:" msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupa" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "izveidot" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "atjaunināt" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "dzēst" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "dalīties" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Vēstule nosūtīta" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Brīdinājums" @@ -461,7 +457,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 65a97c0e0f3..d1c39d7bb3e 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s nevar tikt pārsaukts" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Augšupielādēt" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 7f9f66604d2..8a4ea7c52b4 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 2152495b4dc..b46bd8c51e4 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Подесувања" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Снимам..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "денеска" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчера" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "минатиот месец" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "пред месеци" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "минатата година" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "пред години" @@ -295,12 +291,12 @@ msgstr "Споделен" msgid "Share" msgstr "Сподели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -364,71 +360,71 @@ msgstr "Сподели по е-пошта:" msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "извести преку електронска пошта" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може да се измени" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "креирај" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ажурирај" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "избриши" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "сподели" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Е-порака пратена" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Предупредување" @@ -456,7 +452,7 @@ msgstr "Уреди ги таговите" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Не се селектирани тагови за бришење." diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 1a227389c39..60288a5f0c9 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s не може да биде преименуван" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Подигни" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 1082dea6643..66c5b91e912 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "Овозможи известување по електронска пошта" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ml/core.po b/l10n/ml/core.po index 23e35f07f39..bc9734a0751 100644 --- a/l10n/ml/core.po +++ b/l10n/ml/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ml/files.po b/l10n/ml/files.po index 6d8c4b14482..833a2dc55d7 100644 --- a/l10n/ml/files.po +++ b/l10n/ml/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ml/settings.po b/l10n/ml/settings.po index 648904e1221..873ea5feae6 100644 --- a/l10n/ml/settings.po +++ b/l10n/ml/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index fc5ab544f59..bb6ef01bf7c 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index 73eaed182fe..d2182dd3d02 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index 31883d001e2..8dabc76b3d7 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/mn/core.po b/l10n/mn/core.po index f6d739d99cc..c2ebf099696 100644 --- a/l10n/mn/core.po +++ b/l10n/mn/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/mn/files.po b/l10n/mn/files.po index a1d5b8b6598..d42551ca825 100644 --- a/l10n/mn/files.po +++ b/l10n/mn/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/mn/settings.po b/l10n/mn/settings.po index 122a7b465ec..aab6d4b79f6 100644 --- a/l10n/mn/settings.po +++ b/l10n/mn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 276b33c5f54..a54952683d0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Tetapan" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Simpan..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Ralat" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Amaran" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index fca9d7124c0..340a13a8c63 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Muat naik" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index a13c96d9be0..0bb3d17d5dd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 4c8f0dee364..3d2f6e540d9 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,130 +134,126 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "ယနေ့" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "နှစ် အရင်က" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "ရွေးချယ်" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "ဟုတ်" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "မဟုတ်ဘူး" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "အိုကေ" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "ပယ်ဖျက်မည်" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index d9b7a04a282..97826d20d6d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "ဖိုင်များ" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 0776a88e668..f4a4215acd9 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 6709e9a7d63..4ebea6e5d88 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,63 +138,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Lagrer..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt siden" msgstr[1] "%n minutter siden" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "forrige måned" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n dag siden" msgstr[1] "%n dager siden" -#: js/js.js:1107 -msgid "months ago" -msgstr "måneder siden" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "i fjor" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år siden" @@ -298,12 +294,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Feil under deling" @@ -367,71 +363,71 @@ msgstr "Del på epost" msgid "No people found" msgstr "Ingen personer funnet" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Videredeling er ikke tillatt" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Avslutt deling" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Varsle på email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan endre" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "opprett" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "oppdater" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "slett" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "del" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Feil ved nullstilling av utløpsdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Advarsel" @@ -459,7 +455,7 @@ msgstr "Rediger merkelapper" msgid "Error loading dialog template: {error}" msgstr "Feil ved lasting av dialogmal: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ingen merkelapper valgt for sletting." diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 41161d166d8..66c6511bd35 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "Kunne ikke gi nytt navn til %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Last opp" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 1847b9020b4..d109f8b390a 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Tillat påminnelser i e-post" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Tillat at brukere sender epost-påminnelser for delte filer" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/nds/core.po b/l10n/nds/core.po index 93b4795b345..9ce7cea032c 100644 --- a/l10n/nds/core.po +++ b/l10n/nds/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/nds/files.po b/l10n/nds/files.po index 734a69de904..9798a89bf08 100644 --- a/l10n/nds/files.po +++ b/l10n/nds/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po index bf175932a29..9ab6b674d29 100644 --- a/l10n/nds/settings.po +++ b/l10n/nds/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ne/core.po b/l10n/ne/core.po index be84d374419..eccb8156098 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index a36e68e7d45..368e981636c 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index e84cb840e89..74a3a50b03f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/nl/core.po b/l10n/nl/core.po index e3fa48b58cc..f79ca47c00c 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Instellingen" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Opslaan" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuten geleden" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n uur geleden" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "vandaag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "gisteren" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagen geleden" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "vorige maand" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n maanden geleden" -#: js/js.js:1107 -msgid "months ago" -msgstr "maanden geleden" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "vorig jaar" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "jaar geleden" @@ -297,12 +293,12 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fout" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -366,71 +362,71 @@ msgstr "Deel via e-mail:" msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "groep" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "melden per e-mail" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creëer" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "bijwerken" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "verwijderen" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deel" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail verzonden" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Waarschuwing" @@ -458,7 +454,7 @@ msgstr "Bewerken tags" msgid "Error loading dialog template: {error}" msgstr "Fout bij laden dialoog sjabloon: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Geen tags geselecteerd voor verwijdering." diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 07f271d5b96..4a28f3f9cec 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "%s kon niet worden hernoemd" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Uploaden" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index ee2474973c6..aa5c19bc229 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Toestaan e-mailnotificaties" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index f5053b3197c..ad0c0b98136 100644 --- a/l10n/nn_NO/core.po +++ b/l10n/nn_NO/core.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -137,63 +137,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Lagrar …" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minutt sidan" msgstr[1] "%n minutt sidan" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time sidan" msgstr[1] "%n timar sidan" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sidan" msgstr[1] "%n dagar sidan" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "førre månad" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sidan" msgstr[1] "%n månadar sidan" -#: js/js.js:1107 -msgid "months ago" -msgstr "månadar sidan" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "i fjor" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år sidan" @@ -297,12 +293,12 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Feil" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Feil ved deling" @@ -366,71 +362,71 @@ msgstr "Del over e-post:" msgid "No people found" msgstr "Fann ingen personar" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "gruppe" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Vidaredeling er ikkje tillate" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {brukar}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Udel" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan endra" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "lag" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "oppdater" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "slett" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "del" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-post sendt" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Åtvaring" @@ -458,7 +454,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 279c018f4be..0efab54f712 100644 --- a/l10n/nn_NO/files.po +++ b/l10n/nn_NO/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "Klarte ikkje å omdøypa på %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Last opp" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 71b46c3fe48..28284ea31b4 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,7 +523,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/nqo/core.po b/l10n/nqo/core.po index ebd63b4cd6b..654b95dd281 100644 --- a/l10n/nqo/core.po +++ b/l10n/nqo/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/nqo/files.po b/l10n/nqo/files.po index abf737189e4..f07a5aa64b7 100644 --- a/l10n/nqo/files.po +++ b/l10n/nqo/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index 5dcb3b4cdb9..d59a28ea0d1 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/oc/core.po b/l10n/oc/core.po index e083a731ff1..fada9753248 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configuracion" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Enregistra..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "uèi" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ièr" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "mes passat" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses a" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "an passat" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ans a" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Error" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Error al partejar" @@ -363,71 +359,71 @@ msgstr "Parteja tras corrièl :" msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grop" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Pas partejador" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "crea" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "met a jorn" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "escafa" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "parteja" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 2162cf81690..d74ed7c5722 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Amontcarga" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index f7f91820ef4..3678b57ca92 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/or_IN/core.po b/l10n/or_IN/core.po new file mode 100644 index 00000000000..fedef0897a2 --- /dev/null +++ b/l10n/or_IN/core.po @@ -0,0 +1,805 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:87 +msgid "Expiration date is in the past." +msgstr "" + +#: ajax/share.php:119 ajax/share.php:161 +#, php-format +msgid "Couldn't send mail to following users: %s " +msgstr "" + +#: ajax/update.php:10 +msgid "Turned on maintenance mode" +msgstr "" + +#: ajax/update.php:13 +msgid "Turned off maintenance mode" +msgstr "" + +#: ajax/update.php:16 +msgid "Updated database" +msgstr "" + +#: avatar/controller.php:62 +msgid "No image or file provided" +msgstr "" + +#: avatar/controller.php:81 +msgid "Unknown filetype" +msgstr "" + +#: avatar/controller.php:85 +msgid "Invalid image" +msgstr "" + +#: avatar/controller.php:115 avatar/controller.php:142 +msgid "No temporary profile picture available, try again" +msgstr "" + +#: avatar/controller.php:135 +msgid "No crop data provided" +msgstr "" + +#: js/config.php:36 +msgid "Sunday" +msgstr "" + +#: js/config.php:37 +msgid "Monday" +msgstr "" + +#: js/config.php:38 +msgid "Tuesday" +msgstr "" + +#: js/config.php:39 +msgid "Wednesday" +msgstr "" + +#: js/config.php:40 +msgid "Thursday" +msgstr "" + +#: js/config.php:41 +msgid "Friday" +msgstr "" + +#: js/config.php:42 +msgid "Saturday" +msgstr "" + +#: js/config.php:47 +msgid "January" +msgstr "" + +#: js/config.php:48 +msgid "February" +msgstr "" + +#: js/config.php:49 +msgid "March" +msgstr "" + +#: js/config.php:50 +msgid "April" +msgstr "" + +#: js/config.php:51 +msgid "May" +msgstr "" + +#: js/config.php:52 +msgid "June" +msgstr "" + +#: js/config.php:53 +msgid "July" +msgstr "" + +#: js/config.php:54 +msgid "August" +msgstr "" + +#: js/config.php:55 +msgid "September" +msgstr "" + +#: js/config.php:56 +msgid "October" +msgstr "" + +#: js/config.php:57 +msgid "November" +msgstr "" + +#: js/config.php:58 +msgid "December" +msgstr "" + +#: js/js.js:489 +msgid "Settings" +msgstr "" + +#: js/js.js:589 +msgid "Saving..." +msgstr "" + +#: js/js.js:1246 +msgid "seconds ago" +msgstr "" + +#: js/js.js:1247 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1248 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1249 +msgid "today" +msgstr "" + +#: js/js.js:1250 +msgid "yesterday" +msgstr "" + +#: js/js.js:1251 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1252 +msgid "last month" +msgstr "" + +#: js/js.js:1253 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:1254 +msgid "last year" +msgstr "" + +#: js/js.js:1255 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:125 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:151 +msgid "Error loading file picker template: {error}" +msgstr "" + +#: js/oc-dialogs.js:177 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:187 +msgid "No" +msgstr "" + +#: js/oc-dialogs.js:204 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:224 +msgid "Error loading message template: {error}" +msgstr "" + +#: js/oc-dialogs.js:352 +msgid "{count} file conflict" +msgid_plural "{count} file conflicts" +msgstr[0] "" +msgstr[1] "" + +#: js/oc-dialogs.js:366 +msgid "One file conflict" +msgstr "" + +#: js/oc-dialogs.js:372 +msgid "New Files" +msgstr "" + +#: js/oc-dialogs.js:373 +msgid "Already existing files" +msgstr "" + +#: js/oc-dialogs.js:375 +msgid "Which files do you want to keep?" +msgstr "" + +#: js/oc-dialogs.js:376 +msgid "" +"If you select both versions, the copied file will have a number added to its" +" name." +msgstr "" + +#: js/oc-dialogs.js:384 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:394 +msgid "Continue" +msgstr "" + +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 +msgid "(all selected)" +msgstr "" + +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 +msgid "({count} selected)" +msgstr "" + +#: js/oc-dialogs.js:466 +msgid "Error loading file exists template" +msgstr "" + +#: js/setup.js:84 +msgid "Very weak password" +msgstr "" + +#: js/setup.js:85 +msgid "Weak password" +msgstr "" + +#: js/setup.js:86 +msgid "So-so password" +msgstr "" + +#: js/setup.js:87 +msgid "Good password" +msgstr "" + +#: js/setup.js:88 +msgid "Strong password" +msgstr "" + +#: js/share.js:51 js/share.js:66 js/share.js:106 +msgid "Shared" +msgstr "" + +#: js/share.js:109 +msgid "Share" +msgstr "" + +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 +#: templates/installation.php:10 +msgid "Error" +msgstr "" + +#: js/share.js:160 js/share.js:790 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:171 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:178 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:188 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:190 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:214 +msgid "Share with user or group …" +msgstr "" + +#: js/share.js:220 +msgid "Share link" +msgstr "" + +#: js/share.js:223 +msgid "Password protect" +msgstr "" + +#: js/share.js:225 templates/installation.php:60 templates/login.php:40 +msgid "Password" +msgstr "" + +#: js/share.js:230 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:234 +msgid "Email link to person" +msgstr "" + +#: js/share.js:235 +msgid "Send" +msgstr "" + +#: js/share.js:240 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:241 +msgid "Expiration date" +msgstr "" + +#: js/share.js:277 +msgid "Share via email:" +msgstr "" + +#: js/share.js:280 +msgid "No people found" +msgstr "" + +#: js/share.js:324 js/share.js:385 +msgid "group" +msgstr "" + +#: js/share.js:357 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:401 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:423 +msgid "Unshare" +msgstr "" + +#: js/share.js:431 +msgid "notify by email" +msgstr "" + +#: js/share.js:434 +msgid "can edit" +msgstr "" + +#: js/share.js:436 +msgid "access control" +msgstr "" + +#: js/share.js:439 +msgid "create" +msgstr "" + +#: js/share.js:442 +msgid "update" +msgstr "" + +#: js/share.js:445 +msgid "delete" +msgstr "" + +#: js/share.js:448 +msgid "share" +msgstr "" + +#: js/share.js:721 +msgid "Password protected" +msgstr "" + +#: js/share.js:734 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:752 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:777 +msgid "Sending ..." +msgstr "" + +#: js/share.js:788 +msgid "Email sent" +msgstr "" + +#: js/share.js:812 +msgid "Warning" +msgstr "" + +#: js/tags.js:4 +msgid "The object type is not specified." +msgstr "" + +#: js/tags.js:13 +msgid "Enter new" +msgstr "" + +#: js/tags.js:27 +msgid "Delete" +msgstr "" + +#: js/tags.js:31 +msgid "Add" +msgstr "" + +#: js/tags.js:39 +msgid "Edit tags" +msgstr "" + +#: js/tags.js:57 +msgid "Error loading dialog template: {error}" +msgstr "" + +#: js/tags.js:264 +msgid "No tags selected for deletion." +msgstr "" + +#: js/update.js:8 +msgid "Please reload the page." +msgstr "" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:70 +#, php-format +msgid "%s password reset" +msgstr "" + +#: lostpassword/controller.php:72 +msgid "" +"A problem has occurred whilst sending the email, please contact your " +"administrator." +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:7 +msgid "" +"The link to reset your password has been sent to your email.
If you do " +"not receive it within a reasonable amount of time, check your spam/junk " +"folders.
If it is not there ask your local administrator ." +msgstr "" + +#: lostpassword/templates/lostpassword.php:15 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:18 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:21 templates/installation.php:53 +#: templates/login.php:32 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:25 +msgid "" +"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:27 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:30 +msgid "Reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: setup/controller.php:140 +#, php-format +msgid "" +"Mac OS X is not supported and %s will not work properly on this platform. " +"Use it at your own risk! " +msgstr "" + +#: setup/controller.php:144 +msgid "" +"For the best results, please consider using a GNU/Linux server instead." +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 templates/layout.user.php:116 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: tags/controller.php:22 +msgid "Error loading tags" +msgstr "" + +#: tags/controller.php:48 +msgid "Tag already exists" +msgstr "" + +#: tags/controller.php:64 +msgid "Error deleting tag(s)" +msgstr "" + +#: tags/controller.php:75 +msgid "Error tagging" +msgstr "" + +#: tags/controller.php:86 +msgid "Error untagging" +msgstr "" + +#: tags/controller.php:97 +msgid "Error favoriting" +msgstr "" + +#: tags/controller.php:108 +msgid "Error unfavoriting" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +msgstr "" + +#: templates/altmail.php:4 templates/mail.php:17 +#, php-format +msgid "The share will expire on %s." +msgstr "" + +#: templates/altmail.php:7 templates/mail.php:20 +msgid "Cheers!" +msgstr "" + +#: templates/installation.php:25 templates/installation.php:32 +#: templates/installation.php:39 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:26 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:27 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:34 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:42 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:48 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:70 +msgid "Storage & database" +msgstr "" + +#: templates/installation.php:77 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:90 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:94 +msgid "will be used" +msgstr "" + +#: templates/installation.php:109 +msgid "Database user" +msgstr "" + +#: templates/installation.php:118 +msgid "Database password" +msgstr "" + +#: templates/installation.php:123 +msgid "Database name" +msgstr "" + +#: templates/installation.php:132 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:140 +msgid "Database host" +msgstr "" + +#: templates/installation.php:150 +msgid "Finish setup" +msgstr "" + +#: templates/installation.php:150 +msgid "Finishing …" +msgstr "" + +#: templates/layout.user.php:40 +msgid "" +"This application requires JavaScript to be enabled for correct operation. " +"Please enable " +"JavaScript and re-load this interface." +msgstr "" + +#: templates/layout.user.php:44 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "" + +#: templates/layout.user.php:74 templates/singleuser.user.php:8 +msgid "Log out" +msgstr "" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:17 +msgid "Server side authentication failed!" +msgstr "" + +#: templates/login.php:18 +msgid "Please contact your administrator." +msgstr "" + +#: templates/login.php:46 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:51 +msgid "remember" +msgstr "" + +#: templates/login.php:54 +msgid "Log in" +msgstr "" + +#: templates/login.php:60 +msgid "Alternative Logins" +msgstr "" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

just letting you know that %s shared %s " +"with you.
View it!

" +msgstr "" + +#: templates/singleuser.user.php:3 +msgid "This ownCloud instance is currently in single user mode." +msgstr "" + +#: templates/singleuser.user.php:4 +msgid "This means only administrators can use the instance." +msgstr "" + +#: templates/singleuser.user.php:5 templates/update.user.php:5 +msgid "" +"Contact your system administrator if this message persists or appeared " +"unexpectedly." +msgstr "" + +#: templates/singleuser.user.php:7 templates/update.user.php:6 +msgid "Thank you for your patience." +msgstr "" + +#: templates/update.admin.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" + +#: templates/update.user.php:3 +msgid "" +"This ownCloud instance is currently being updated, which may take a while." +msgstr "" + +#: templates/update.user.php:4 +msgid "Please reload this page after a short time to continue using ownCloud." +msgstr "" diff --git a/l10n/or_IN/files.po b/l10n/or_IN/files.po new file mode 100644 index 00000000000..5297c125408 --- /dev/null +++ b/l10n/or_IN/files.po @@ -0,0 +1,409 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:15 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:25 ajax/move.php:28 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/newfile.php:58 js/files.js:98 +msgid "File name cannot be empty." +msgstr "" + +#: ajax/newfile.php:63 +#, php-format +msgid "\"%s\" is an invalid file name." +msgstr "" + +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 +#: lib/app.php:65 +msgid "The target folder has been moved or deleted." +msgstr "" + +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#, php-format +msgid "" +"The name %s is already used in the folder %s. Please choose a different " +"name." +msgstr "" + +#: ajax/newfile.php:97 +msgid "Not a valid source" +msgstr "" + +#: ajax/newfile.php:102 +msgid "" +"Server is not allowed to open URLs, please check the server configuration" +msgstr "" + +#: ajax/newfile.php:118 +#, php-format +msgid "Error while downloading %s to %s" +msgstr "" + +#: ajax/newfile.php:146 +msgid "Error when creating the file" +msgstr "" + +#: ajax/newfolder.php:22 +msgid "Folder name cannot be empty." +msgstr "" + +#: ajax/newfolder.php:66 +msgid "Error when creating the folder" +msgstr "" + +#: ajax/upload.php:19 ajax/upload.php:57 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:33 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:75 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:82 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:83 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:85 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:86 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:87 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:88 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:89 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:107 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:169 +msgid "Upload failed. Could not find uploaded file" +msgstr "" + +#: ajax/upload.php:179 +msgid "Upload failed. Could not get file info." +msgstr "" + +#: ajax/upload.php:194 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:11 js/filelist.js:14 +msgid "Files" +msgstr "" + +#: js/file-upload.js:254 +msgid "Unable to upload {filename} as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:266 +msgid "Total file size {size1} exceeds upload limit {size2}" +msgstr "" + +#: js/file-upload.js:276 +msgid "" +"Not enough free space, you are uploading {size1} but only {size2} is left" +msgstr "" + +#: js/file-upload.js:353 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:398 +msgid "Could not get result from server." +msgstr "" + +#: js/file-upload.js:490 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:555 +msgid "URL cannot be empty" +msgstr "" + +#: js/file-upload.js:559 +msgid "In the home folder 'Shared' is a reserved filename" +msgstr "" + +#: js/file-upload.js:561 js/filelist.js:585 +msgid "{new_name} already exists" +msgstr "" + +#: js/file-upload.js:613 +msgid "Could not create file" +msgstr "" + +#: js/file-upload.js:626 +msgid "Could not create folder" +msgstr "" + +#: js/file-upload.js:666 +msgid "Error fetching URL" +msgstr "" + +#: js/fileactions.js:164 +msgid "Share" +msgstr "" + +#: js/fileactions.js:177 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:238 +msgid "Rename" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error moving file" +msgstr "" + +#: js/filelist.js:102 js/files.js:552 +msgid "Error" +msgstr "" + +#: js/filelist.js:251 js/filelist.js:1129 +msgid "Pending" +msgstr "" + +#: js/filelist.js:612 +msgid "Could not rename file" +msgstr "" + +#: js/filelist.js:775 +msgid "Error deleting file." +msgstr "" + +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:808 +msgid "{dirs} and {files}" +msgstr "" + +#: js/filelist.js:1037 js/filelist.js:1076 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:96 +msgid "\"{name}\" is an invalid file name." +msgstr "" + +#: js/files.js:117 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:121 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:134 +msgid "" +"Encryption App is enabled but your keys are not initialized, please log-out " +"and log-in again" +msgstr "" + +#: js/files.js:138 +msgid "" +"Invalid private key for Encryption App. Please update your private key " +"password in your personal settings to recover access to your encrypted " +"files." +msgstr "" + +#: js/files.js:142 +msgid "" +"Encryption was disabled but your files are still encrypted. Please go to " +"your personal settings to decrypt your files." +msgstr "" + +#: js/files.js:331 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:570 templates/index.php:67 +msgid "Name" +msgstr "" + +#: js/files.js:571 templates/index.php:79 +msgid "Size" +msgstr "" + +#: js/files.js:572 templates/index.php:81 +msgid "Modified" +msgstr "" + +#: lib/app.php:60 +msgid "Invalid folder name. Usage of 'Shared' is reserved." +msgstr "" + +#: lib/app.php:93 +#, php-format +msgid "%s could not be renamed" +msgstr "" + +#: lib/helper.php:14 templates/index.php:22 +#, php-format +msgid "Upload (max. %s)" +msgstr "" + +#: templates/admin.php:4 +msgid "File handling" +msgstr "" + +#: templates/admin.php:6 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:9 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:14 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:16 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:19 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:21 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:25 +msgid "Save" +msgstr "" + +#: templates/index.php:5 +msgid "New" +msgstr "" + +#: templates/index.php:8 +msgid "New text file" +msgstr "" + +#: templates/index.php:9 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "New folder" +msgstr "" + +#: templates/index.php:13 +msgid "Folder" +msgstr "" + +#: templates/index.php:16 +msgid "From link" +msgstr "" + +#: templates/index.php:40 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:45 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:51 +msgid "You don’t have permission to upload or create files here" +msgstr "" + +#: templates/index.php:56 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:73 +msgid "Download" +msgstr "" + +#: templates/index.php:84 templates/index.php:85 +msgid "Delete" +msgstr "" + +#: templates/index.php:96 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:98 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:103 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:106 +msgid "Current scanning" +msgstr "" diff --git a/l10n/or_IN/files_encryption.po b/l10n/or_IN/files_encryption.po new file mode 100644 index 00000000000..3de51d97c54 --- /dev/null +++ b/l10n/or_IN/files_encryption.po @@ -0,0 +1,201 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "" + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "" + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "" + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:52 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:54 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:12 +msgid "" +"Encryption app not initialized! Maybe the encryption app was re-enabled " +"during your session. Please try to log out and log back in to initialize the" +" encryption app." +msgstr "" + +#: files/error.php:16 +#, php-format +msgid "" +"Your private key is not valid! Likely your password was changed outside of " +"%s (e.g. your corporate directory). You can update your private key password" +" in your personal settings to recover access to your encrypted files." +msgstr "" + +#: files/error.php:19 +msgid "" +"Can not decrypt this file, probably this is a shared file. Please ask the " +"file owner to reshare the file with you." +msgstr "" + +#: files/error.php:22 files/error.php:27 +msgid "" +"Unknown error please check your system settings or contact your " +"administrator" +msgstr "" + +#: hooks/hooks.php:64 +msgid "Missing requirements." +msgstr "" + +#: hooks/hooks.php:65 +msgid "" +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " +"together with the PHP extension is enabled and configured properly. For now," +" the encryption app has been disabled." +msgstr "" + +#: hooks/hooks.php:295 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/detect-migration.js:21 +msgid "Initial encryption started... This can take some time. Please wait." +msgstr "" + +#: js/detect-migration.js:25 +msgid "Initial encryption running... Please try again later." +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "Go directly to your " +msgstr "" + +#: templates/invalid_private_key.php:8 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:2 templates/settings-personal.php:2 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:5 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:9 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:12 +msgid "Repeat Recovery key password" +msgstr "" + +#: templates/settings-admin.php:19 templates/settings-personal.php:50 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:27 templates/settings-personal.php:58 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:32 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:38 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:45 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:51 +msgid "Repeat New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:56 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:8 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:13 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:21 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:27 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:32 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:41 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:43 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:59 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:60 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/or_IN/files_external.po b/l10n/or_IN/files_external.po new file mode 100644 index 00000000000..91e961105d5 --- /dev/null +++ b/l10n/or_IN/files_external.po @@ -0,0 +1,136 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:29 js/google.js:8 js/google.js:40 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:33 js/dropbox.js:97 js/dropbox.js:103 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:68 js/google.js:89 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:102 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:45 js/google.js:122 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: js/settings.js:318 js/settings.js:325 +msgid "Saved" +msgstr "" + +#: lib/config.php:598 +msgid "Note: " +msgstr "" + +#: lib/config.php:608 +msgid " and " +msgstr "" + +#: lib/config.php:630 +#, php-format +msgid "" +"Note: The cURL support in PHP is not enabled or installed. Mounting " +"of %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:632 +#, php-format +msgid "" +"Note: The FTP support in PHP is not enabled or installed. Mounting of" +" %s is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:634 +#, php-format +msgid "" +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please" +" ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:2 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:8 templates/settings.php:27 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:9 +msgid "External storage" +msgstr "" + +#: templates/settings.php:10 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:11 +msgid "Options" +msgstr "" + +#: templates/settings.php:12 +msgid "Available for" +msgstr "" + +#: templates/settings.php:32 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:92 +msgid "No user or group" +msgstr "" + +#: templates/settings.php:95 +msgid "All Users" +msgstr "" + +#: templates/settings.php:97 +msgid "Groups" +msgstr "" + +#: templates/settings.php:105 +msgid "Users" +msgstr "" + +#: templates/settings.php:118 templates/settings.php:119 +#: templates/settings.php:158 templates/settings.php:159 +msgid "Delete" +msgstr "" + +#: templates/settings.php:132 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:135 +msgid "Allow users to mount the following external storage" +msgstr "" + +#: templates/settings.php:150 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:168 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/or_IN/files_sharing.po b/l10n/or_IN/files_sharing.po new file mode 100644 index 00000000000..6a3737458a6 --- /dev/null +++ b/l10n/or_IN/files_sharing.po @@ -0,0 +1,72 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/share.js:33 +msgid "Shared by {owner}" +msgstr "" + +#: templates/authenticate.php:4 +msgid "This share is password-protected" +msgstr "" + +#: templates/authenticate.php:7 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:10 +msgid "Password" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:17 +#, php-format +msgid "shared by %s" +msgstr "" + +#: templates/public.php:44 +#, php-format +msgid "Download %s" +msgstr "" + +#: templates/public.php:48 +msgid "Direct link" +msgstr "" diff --git a/l10n/or_IN/files_trashbin.po b/l10n/or_IN/files_trashbin.po new file mode 100644 index 00000000000..efddff7ea55 --- /dev/null +++ b/l10n/or_IN/files_trashbin.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:59 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:64 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/filelist.js:3 +msgid "Deleted files" +msgstr "" + +#: js/trash.js:33 js/trash.js:124 js/trash.js:173 +msgid "Error" +msgstr "" + +#: js/trash.js:62 templates/index.php:22 templates/index.php:24 +msgid "Restore" +msgstr "" + +#: js/trash.js:264 +msgid "Deleted Files" +msgstr "" + +#: lib/trashbin.php:861 lib/trashbin.php:863 +msgid "restored" +msgstr "" + +#: templates/index.php:6 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:19 +msgid "Name" +msgstr "" + +#: templates/index.php:30 +msgid "Deleted" +msgstr "" + +#: templates/index.php:33 templates/index.php:34 +msgid "Delete" +msgstr "" diff --git a/l10n/or_IN/files_versions.po b/l10n/or_IN/files_versions.po new file mode 100644 index 00000000000..3ad5ed6f514 --- /dev/null +++ b/l10n/or_IN/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:39 +msgid "Versions" +msgstr "" + +#: js/versions.js:61 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:88 +msgid "More versions..." +msgstr "" + +#: js/versions.js:126 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:156 +msgid "Restore" +msgstr "" diff --git a/l10n/or_IN/lib.po b/l10n/or_IN/lib.po new file mode 100644 index 00000000000..b8ef391b221 --- /dev/null +++ b/l10n/or_IN/lib.po @@ -0,0 +1,356 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: private/app.php:236 +#, php-format +msgid "" +"App \"%s\" can't be installed because it is not compatible with this version" +" of ownCloud." +msgstr "" + +#: private/app.php:248 +msgid "No app name specified" +msgstr "" + +#: private/app.php:353 +msgid "Help" +msgstr "" + +#: private/app.php:366 +msgid "Personal" +msgstr "" + +#: private/app.php:377 +msgid "Settings" +msgstr "" + +#: private/app.php:389 +msgid "Users" +msgstr "" + +#: private/app.php:402 +msgid "Admin" +msgstr "" + +#: private/app.php:880 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "" + +#: private/avatar.php:66 +msgid "Unknown filetype" +msgstr "" + +#: private/avatar.php:71 +msgid "Invalid image" +msgstr "" + +#: private/defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: private/files.php:232 +msgid "ZIP download is turned off." +msgstr "" + +#: private/files.php:233 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: private/files.php:234 private/files.php:261 +msgid "Back to Files" +msgstr "" + +#: private/files.php:259 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: private/files.php:260 +msgid "" +"Please download the files separately in smaller chunks or kindly ask your " +"administrator." +msgstr "" + +#: private/installer.php:64 +msgid "No source specified when installing app" +msgstr "" + +#: private/installer.php:71 +msgid "No href specified when installing app from http" +msgstr "" + +#: private/installer.php:76 +msgid "No path specified when installing app from local file" +msgstr "" + +#: private/installer.php:90 +#, php-format +msgid "Archives of type %s are not supported" +msgstr "" + +#: private/installer.php:104 +msgid "Failed to open archive when installing app" +msgstr "" + +#: private/installer.php:126 +msgid "App does not provide an info.xml file" +msgstr "" + +#: private/installer.php:132 +msgid "App can't be installed because of not allowed code in the App" +msgstr "" + +#: private/installer.php:141 +msgid "" +"App can't be installed because it is not compatible with this version of " +"ownCloud" +msgstr "" + +#: private/installer.php:147 +msgid "" +"App can't be installed because it contains the true tag " +"which is not allowed for non shipped apps" +msgstr "" + +#: private/installer.php:160 +msgid "" +"App can't be installed because the version in info.xml/version is not the " +"same as the version reported from the app store" +msgstr "" + +#: private/installer.php:170 +msgid "App directory already exists" +msgstr "" + +#: private/installer.php:183 +#, php-format +msgid "Can't create app folder. Please fix permissions. %s" +msgstr "" + +#: private/json.php:29 +msgid "Application is not enabled" +msgstr "" + +#: private/json.php:40 private/json.php:62 private/json.php:87 +msgid "Authentication error" +msgstr "" + +#: private/json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: private/json.php:74 +msgid "Unknown user" +msgstr "" + +#: private/search/provider/file.php:18 private/search/provider/file.php:36 +msgid "Files" +msgstr "" + +#: private/search/provider/file.php:27 private/search/provider/file.php:34 +msgid "Text" +msgstr "" + +#: private/search/provider/file.php:30 +msgid "Images" +msgstr "" + +#: private/setup/abstractdatabase.php:26 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: private/setup/abstractdatabase.php:29 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: private/setup/abstractdatabase.php:32 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: private/setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: private/setup/mssql.php:21 private/setup/mysql.php:13 +#: private/setup/oci.php:114 private/setup/postgresql.php:31 +#: private/setup/postgresql.php:84 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: private/setup/mysql.php:12 +msgid "MySQL/MariaDB username and/or password not valid" +msgstr "" + +#: private/setup/mysql.php:67 private/setup/oci.php:54 +#: private/setup/oci.php:121 private/setup/oci.php:144 +#: private/setup/oci.php:151 private/setup/oci.php:162 +#: private/setup/oci.php:169 private/setup/oci.php:178 +#: private/setup/oci.php:186 private/setup/oci.php:195 +#: private/setup/oci.php:201 private/setup/postgresql.php:103 +#: private/setup/postgresql.php:112 private/setup/postgresql.php:129 +#: private/setup/postgresql.php:139 private/setup/postgresql.php:148 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:68 private/setup/oci.php:55 +#: private/setup/oci.php:122 private/setup/oci.php:145 +#: private/setup/oci.php:152 private/setup/oci.php:163 +#: private/setup/oci.php:179 private/setup/oci.php:187 +#: private/setup/oci.php:196 private/setup/postgresql.php:104 +#: private/setup/postgresql.php:113 private/setup/postgresql.php:130 +#: private/setup/postgresql.php:140 private/setup/postgresql.php:149 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: private/setup/mysql.php:85 +#, php-format +msgid "MySQL/MariaDB user '%s'@'localhost' exists already." +msgstr "" + +#: private/setup/mysql.php:86 +msgid "Drop this user from MySQL/MariaDB" +msgstr "" + +#: private/setup/mysql.php:91 +#, php-format +msgid "MySQL/MariaDB user '%s'@'%%' already exists" +msgstr "" + +#: private/setup/mysql.php:92 +msgid "Drop this user from MySQL/MariaDB." +msgstr "" + +#: private/setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: private/setup/oci.php:41 private/setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: private/setup/oci.php:170 private/setup/oci.php:202 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: private/setup/postgresql.php:30 private/setup/postgresql.php:83 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: private/setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: private/setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: private/setup.php:202 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: private/setup.php:203 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: private/share/mailnotifications.php:72 +#: private/share/mailnotifications.php:118 +#, php-format +msgid "%s shared »%s« with you" +msgstr "" + +#: private/tags.php:193 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" + +#: private/template/functions.php:134 +msgid "seconds ago" +msgstr "" + +#: private/template/functions.php:135 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:136 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:137 +msgid "today" +msgstr "" + +#: private/template/functions.php:138 +msgid "yesterday" +msgstr "" + +#: private/template/functions.php:140 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:142 +msgid "last month" +msgstr "" + +#: private/template/functions.php:143 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: private/template/functions.php:145 +msgid "last year" +msgstr "" + +#: private/template/functions.php:146 +msgid "years ago" +msgstr "" + +#: private/user/manager.php:232 +msgid "" +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " +"\"0-9\", and \"_.@-\"" +msgstr "" + +#: private/user/manager.php:237 +msgid "A valid username must be provided" +msgstr "" + +#: private/user/manager.php:241 +msgid "A valid password must be provided" +msgstr "" + +#: private/user/manager.php:246 +msgid "The username is already being used" +msgstr "" diff --git a/l10n/or_IN/settings.po b/l10n/or_IN/settings.po new file mode 100644 index 00000000000..970127c6562 --- /dev/null +++ b/l10n/or_IN/settings.po @@ -0,0 +1,838 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: admin/controller.php:66 +#, php-format +msgid "Invalid value supplied for %s" +msgstr "" + +#: admin/controller.php:73 +msgid "Saved" +msgstr "" + +#: admin/controller.php:90 +msgid "test email settings" +msgstr "" + +#: admin/controller.php:91 +msgid "If you received this email, the settings seem to be correct." +msgstr "" + +#: admin/controller.php:94 +msgid "" +"A problem occurred while sending the e-mail. Please revisit your settings." +msgstr "" + +#: admin/controller.php:99 +msgid "Email sent" +msgstr "" + +#: admin/controller.php:101 +msgid "You need to set your user email before being able to send test emails." +msgstr "" + +#: admin/controller.php:116 templates/admin.php:299 +msgid "Send mode" +msgstr "" + +#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +msgid "Encryption" +msgstr "" + +#: admin/controller.php:120 templates/admin.php:336 +msgid "Authentication method" +msgstr "" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 changepassword/controller.php:49 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:31 +msgid "Your full name has been changed." +msgstr "" + +#: ajax/changedisplayname.php:34 +msgid "Unable to change full name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/decryptall.php:31 +msgid "Files decrypted successfully" +msgstr "" + +#: ajax/decryptall.php:33 +msgid "" +"Couldn't decrypt your files, please check your owncloud.log or ask your " +"administrator" +msgstr "" + +#: ajax/decryptall.php:36 +msgid "Couldn't decrypt your files, check your password and try again" +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: changepassword/controller.php:17 +msgid "Wrong password" +msgstr "" + +#: changepassword/controller.php:36 +msgid "No user supplied" +msgstr "" + +#: changepassword/controller.php:68 +msgid "" +"Please provide an admin recovery password, otherwise all user data will be " +"lost" +msgstr "" + +#: changepassword/controller.php:73 +msgid "" +"Wrong admin recovery password. Please check the password and try again." +msgstr "" + +#: changepassword/controller.php:81 +msgid "" +"Back-end doesn't support password change, but the users encryption key was " +"successfully updated." +msgstr "" + +#: changepassword/controller.php:86 changepassword/controller.php:97 +msgid "Unable to change password" +msgstr "" + +#: js/admin.js:73 +msgid "Sending..." +msgstr "" + +#: js/apps.js:45 templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: js/apps.js:50 +msgid "Admin Documentation" +msgstr "" + +#: js/apps.js:67 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:73 js/apps.js:106 js/apps.js:134 +msgid "Disable" +msgstr "" + +#: js/apps.js:73 js/apps.js:114 js/apps.js:127 js/apps.js:143 +msgid "Enable" +msgstr "" + +#: js/apps.js:95 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:103 js/apps.js:104 js/apps.js:125 +msgid "Error while disabling app" +msgstr "" + +#: js/apps.js:124 js/apps.js:138 js/apps.js:139 +msgid "Error while enabling app" +msgstr "" + +#: js/apps.js:149 +msgid "Updating...." +msgstr "" + +#: js/apps.js:152 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:152 +msgid "Error" +msgstr "" + +#: js/apps.js:153 templates/apps.php:55 +msgid "Update" +msgstr "" + +#: js/apps.js:156 +msgid "Updated" +msgstr "" + +#: js/personal.js:243 +msgid "Select a profile picture" +msgstr "" + +#: js/personal.js:274 +msgid "Very weak password" +msgstr "" + +#: js/personal.js:275 +msgid "Weak password" +msgstr "" + +#: js/personal.js:276 +msgid "So-so password" +msgstr "" + +#: js/personal.js:277 +msgid "Good password" +msgstr "" + +#: js/personal.js:278 +msgid "Strong password" +msgstr "" + +#: js/personal.js:313 +msgid "Decrypting files... Please wait, this can take some time." +msgstr "" + +#: js/users.js:47 +msgid "deleted" +msgstr "" + +#: js/users.js:47 +msgid "undo" +msgstr "" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:101 templates/users.php:24 templates/users.php:88 +#: templates/users.php:116 +msgid "Groups" +msgstr "" + +#: js/users.js:105 templates/users.php:90 templates/users.php:128 +msgid "Group Admin" +msgstr "" + +#: js/users.js:127 templates/users.php:168 +msgid "Delete" +msgstr "" + +#: js/users.js:310 +msgid "add group" +msgstr "" + +#: js/users.js:486 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:487 js/users.js:493 js/users.js:508 +msgid "Error creating user" +msgstr "" + +#: js/users.js:492 +msgid "A valid password must be provided" +msgstr "" + +#: js/users.js:516 +msgid "Warning: Home directory for user \"{user}\" already exists" +msgstr "" + +#: personal.php:48 personal.php:49 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:8 +msgid "Everything (fatal issues, errors, warnings, info, debug)" +msgstr "" + +#: templates/admin.php:9 +msgid "Info, warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:10 +msgid "Warnings, errors and fatal issues" +msgstr "" + +#: templates/admin.php:11 +msgid "Errors and fatal issues" +msgstr "" + +#: templates/admin.php:12 +msgid "Fatal issues only" +msgstr "" + +#: templates/admin.php:16 templates/admin.php:23 +msgid "None" +msgstr "" + +#: templates/admin.php:17 +msgid "Login" +msgstr "" + +#: templates/admin.php:18 +msgid "Plain" +msgstr "" + +#: templates/admin.php:19 +msgid "NT LAN Manager" +msgstr "" + +#: templates/admin.php:24 +msgid "SSL" +msgstr "" + +#: templates/admin.php:25 +msgid "TLS" +msgstr "" + +#: templates/admin.php:47 templates/admin.php:61 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:50 +#, php-format +msgid "" +"You are accessing %s via HTTP. We strongly suggest you configure your server" +" to require using HTTPS instead." +msgstr "" + +#: templates/admin.php:64 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file 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." +msgstr "" + +#: templates/admin.php:75 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:79 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:90 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:93 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:104 +msgid "Your PHP version is outdated" +msgstr "" + +#: templates/admin.php:107 +msgid "" +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " +"newer because older versions are known to be broken. It is possible that " +"this installation is not working correctly." +msgstr "" + +#: templates/admin.php:118 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:123 +msgid "System locale can not be set to a one which supports UTF-8." +msgstr "" + +#: templates/admin.php:127 +msgid "" +"This means that there might be problems with certain characters in file " +"names." +msgstr "" + +#: templates/admin.php:131 +#, php-format +msgid "" +"We strongly suggest to install the required packages on your system to " +"support one of the following locales: %s." +msgstr "" + +#: templates/admin.php:143 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:146 +msgid "" +"This 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." +msgstr "" + +#: templates/admin.php:160 +msgid "Cron" +msgstr "" + +#: templates/admin.php:167 +#, php-format +msgid "Last cron was executed at %s." +msgstr "" + +#: templates/admin.php:170 +#, php-format +msgid "" +"Last cron was executed at %s. This is more than an hour ago, something seems" +" wrong." +msgstr "" + +#: templates/admin.php:174 +msgid "Cron was not executed yet!" +msgstr "" + +#: templates/admin.php:184 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:192 +msgid "" +"cron.php is registered at a webcron service to call cron.php every 15 " +"minutes over http." +msgstr "" + +#: templates/admin.php:200 +msgid "Use systems cron service to call the cron.php file every 15 minutes." +msgstr "" + +#: templates/admin.php:205 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:211 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:212 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:219 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:220 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:227 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:228 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:235 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:236 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:243 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:246 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:253 +msgid "Allow mail notification" +msgstr "" + +#: templates/admin.php:254 +msgid "Allow users to send mail notification for shared files" +msgstr "" + +#: templates/admin.php:261 +msgid "Security" +msgstr "" + +#: templates/admin.php:274 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:276 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" + +#: templates/admin.php:282 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" + +#: templates/admin.php:294 +msgid "Email Server" +msgstr "" + +#: templates/admin.php:296 +msgid "This is used for sending out notifications." +msgstr "" + +#: templates/admin.php:327 +msgid "From address" +msgstr "" + +#: templates/admin.php:349 +msgid "Authentication required" +msgstr "" + +#: templates/admin.php:353 +msgid "Server address" +msgstr "" + +#: templates/admin.php:357 +msgid "Port" +msgstr "" + +#: templates/admin.php:362 +msgid "Credentials" +msgstr "" + +#: templates/admin.php:363 +msgid "SMTP Username" +msgstr "" + +#: templates/admin.php:366 +msgid "SMTP Password" +msgstr "" + +#: templates/admin.php:370 +msgid "Test email settings" +msgstr "" + +#: templates/admin.php:371 +msgid "Send email" +msgstr "" + +#: templates/admin.php:376 +msgid "Log" +msgstr "" + +#: templates/admin.php:377 +msgid "Log level" +msgstr "" + +#: templates/admin.php:409 +msgid "More" +msgstr "" + +#: templates/admin.php:410 +msgid "Less" +msgstr "" + +#: templates/admin.php:416 templates/personal.php:171 +msgid "Version" +msgstr "" + +#: templates/admin.php:420 templates/personal.php:174 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:14 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:31 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:38 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:43 +msgid "Documentation:" +msgstr "" + +#: templates/apps.php:49 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:51 +msgid "See application website" +msgstr "" + +#: templates/apps.php:53 +msgid "-licensed by " +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:38 templates/users.php:21 templates/users.php:87 +msgid "Password" +msgstr "" + +#: templates/personal.php:39 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:40 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "" + +#: templates/personal.php:45 +msgid "New password" +msgstr "" + +#: templates/personal.php:49 +msgid "Change password" +msgstr "" + +#: templates/personal.php:61 templates/users.php:86 +msgid "Full Name" +msgstr "" + +#: templates/personal.php:76 +msgid "Email" +msgstr "" + +#: templates/personal.php:78 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:81 +msgid "" +"Fill in an email address to enable password recovery and receive " +"notifications" +msgstr "" + +#: templates/personal.php:89 +msgid "Profile picture" +msgstr "" + +#: templates/personal.php:94 +msgid "Upload new" +msgstr "" + +#: templates/personal.php:96 +msgid "Select new from Files" +msgstr "" + +#: templates/personal.php:97 +msgid "Remove image" +msgstr "" + +#: templates/personal.php:98 +msgid "Either png or jpg. Ideally square but you will be able to crop it." +msgstr "" + +#: templates/personal.php:100 +msgid "Your avatar is provided by your original account." +msgstr "" + +#: templates/personal.php:104 +msgid "Cancel" +msgstr "" + +#: templates/personal.php:105 +msgid "Choose as profile image" +msgstr "" + +#: templates/personal.php:111 templates/personal.php:112 +msgid "Language" +msgstr "" + +#: templates/personal.php:131 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:137 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:139 +#, php-format +msgid "" +"Use this address to access your Files via " +"WebDAV" +msgstr "" + +#: templates/personal.php:151 +msgid "The encryption app is no longer enabled, please decrypt all your files" +msgstr "" + +#: templates/personal.php:157 +msgid "Log-in password" +msgstr "" + +#: templates/personal.php:162 +msgid "Decrypt all Files" +msgstr "" + +#: templates/users.php:19 +msgid "Login Name" +msgstr "" + +#: templates/users.php:28 +msgid "Create" +msgstr "" + +#: templates/users.php:34 +msgid "Admin Recovery Password" +msgstr "" + +#: templates/users.php:35 templates/users.php:36 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:40 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:42 templates/users.php:137 +msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" +msgstr "" + +#: templates/users.php:46 templates/users.php:146 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:64 templates/users.php:161 +msgid "Other" +msgstr "" + +#: templates/users.php:85 +msgid "Username" +msgstr "" + +#: templates/users.php:92 +msgid "Storage" +msgstr "" + +#: templates/users.php:106 +msgid "change full name" +msgstr "" + +#: templates/users.php:110 +msgid "set new password" +msgstr "" + +#: templates/users.php:141 +msgid "Default" +msgstr "" diff --git a/l10n/or_IN/user_ldap.po b/l10n/or_IN/user_ldap.po new file mode 100644 index 00000000000..8e1675057b3 --- /dev/null +++ b/l10n/or_IN/user_ldap.po @@ -0,0 +1,534 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:42 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:46 +msgid "" +"The configuration is invalid. Please have a look at the logs for further " +"details." +msgstr "" + +#: ajax/wizard.php:32 +msgid "No action specified" +msgstr "" + +#: ajax/wizard.php:38 +msgid "No configuration specified" +msgstr "" + +#: ajax/wizard.php:81 +msgid "No data specified" +msgstr "" + +#: ajax/wizard.php:89 +#, php-format +msgid " Could not set configuration %s" +msgstr "" + +#: js/settings.js:67 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:83 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:84 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:99 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:127 +msgid "mappings cleared" +msgstr "" + +#: js/settings.js:128 +msgid "Success" +msgstr "" + +#: js/settings.js:133 +msgid "Error" +msgstr "" + +#: js/settings.js:838 +msgid "Configuration OK" +msgstr "" + +#: js/settings.js:847 +msgid "Configuration incorrect" +msgstr "" + +#: js/settings.js:856 +msgid "Configuration incomplete" +msgstr "" + +#: js/settings.js:873 js/settings.js:882 +msgid "Select groups" +msgstr "" + +#: js/settings.js:876 js/settings.js:885 +msgid "Select object classes" +msgstr "" + +#: js/settings.js:879 +msgid "Select attributes" +msgstr "" + +#: js/settings.js:906 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:913 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:922 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:923 +msgid "Confirm Deletion" +msgstr "" + +#: lib/wizard.php:79 lib/wizard.php:93 +#, php-format +msgid "%s group found" +msgid_plural "%s groups found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:122 +#, php-format +msgid "%s user found" +msgid_plural "%s users found" +msgstr[0] "" +msgstr[1] "" + +#: lib/wizard.php:784 lib/wizard.php:796 +msgid "Invalid Host" +msgstr "" + +#: lib/wizard.php:983 +msgid "Could not find the desired feature" +msgstr "" + +#: templates/part.settingcontrols.php:2 +msgid "Save" +msgstr "" + +#: templates/part.settingcontrols.php:4 +msgid "Test Configuration" +msgstr "" + +#: templates/part.settingcontrols.php:10 templates/part.wizardcontrols.php:14 +msgid "Help" +msgstr "" + +#: templates/part.wizard-groupfilter.php:4 +#, php-format +msgid "Groups meeting these criteria are available in %s:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:8 +#: templates/part.wizard-userfilter.php:8 +msgid "only those object classes:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:17 +#: templates/part.wizard-userfilter.php:17 +msgid "only from those groups:" +msgstr "" + +#: templates/part.wizard-groupfilter.php:25 +#: templates/part.wizard-loginfilter.php:32 +#: templates/part.wizard-userfilter.php:25 +msgid "Edit raw filter instead" +msgstr "" + +#: templates/part.wizard-groupfilter.php:30 +#: templates/part.wizard-loginfilter.php:37 +#: templates/part.wizard-userfilter.php:30 +msgid "Raw LDAP filter" +msgstr "" + +#: templates/part.wizard-groupfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP groups shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-groupfilter.php:38 +msgid "groups found" +msgstr "" + +#: templates/part.wizard-loginfilter.php:4 +msgid "Users login with this attribute:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:8 +msgid "LDAP Username:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:16 +msgid "LDAP Email Address:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:24 +msgid "Other Attributes:" +msgstr "" + +#: templates/part.wizard-loginfilter.php:38 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action. Example: \"uid=%%uid\"" +msgstr "" + +#: templates/part.wizard-server.php:18 +msgid "Add Server Configuration" +msgstr "" + +#: templates/part.wizard-server.php:30 +msgid "Host" +msgstr "" + +#: templates/part.wizard-server.php:31 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/part.wizard-server.php:36 +msgid "Port" +msgstr "" + +#: templates/part.wizard-server.php:44 +msgid "User DN" +msgstr "" + +#: templates/part.wizard-server.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/part.wizard-server.php:52 +msgid "Password" +msgstr "" + +#: templates/part.wizard-server.php:53 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/part.wizard-server.php:60 +msgid "One Base DN per line" +msgstr "" + +#: templates/part.wizard-server.php:61 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/part.wizard-userfilter.php:4 +#, php-format +msgid "Limit %s access to users meeting these criteria:" +msgstr "" + +#: templates/part.wizard-userfilter.php:31 +#, php-format +msgid "" +"The filter specifies which LDAP users shall have access to the %s instance." +msgstr "" + +#: templates/part.wizard-userfilter.php:38 +msgid "users found" +msgstr "" + +#: templates/part.wizardcontrols.php:5 +msgid "Back" +msgstr "" + +#: templates/part.wizardcontrols.php:8 +msgid "Continue" +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behavior. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:14 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:20 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:22 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:22 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:23 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:23 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:24 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:25 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:25 +msgid "Only connect to the replica server." +msgstr "" + +#: templates/settings.php:26 +msgid "Case insensitive LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:27 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:27 +#, php-format +msgid "" +"Not recommended, use it for testing only! If connection only works with this" +" option, import the LDAP server's SSL certificate in your %s server." +msgstr "" + +#: templates/settings.php:28 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:28 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:30 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:32 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:32 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" + +#: templates/settings.php:33 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:33 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:34 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:34 templates/settings.php:37 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:35 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:35 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" + +#: templates/settings.php:36 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:36 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:37 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:38 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:39 +msgid "Nested Groups" +msgstr "" + +#: templates/settings.php:39 +msgid "" +"When switched on, groups that contain groups are supported. (Only works if " +"the group member attribute contains DNs.)" +msgstr "" + +#: templates/settings.php:40 +msgid "Paging chunksize" +msgstr "" + +#: templates/settings.php:40 +msgid "" +"Chunksize used for paged LDAP searches that may return bulky results like " +"user or group enumeration. (Setting it 0 disables paged LDAP searches in " +"those situations.)" +msgstr "" + +#: templates/settings.php:42 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:44 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:45 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:45 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:46 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:47 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:47 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:53 +msgid "Internal Username" +msgstr "" + +#: templates/settings.php:54 +msgid "" +"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. It is also" +" a part of remote URLs, for instance for all *DAV services. With this " +"setting, the default behavior can be overridden. To achieve a similar " +"behavior as before ownCloud 5 enter the user display name attribute in the " +"following field. Leave it empty for default behavior. Changes will have " +"effect only on newly mapped (added) LDAP users." +msgstr "" + +#: templates/settings.php:55 +msgid "Internal Username Attribute:" +msgstr "" + +#: templates/settings.php:56 +msgid "Override UUID detection" +msgstr "" + +#: templates/settings.php:57 +msgid "" +"By default, the UUID attribute is automatically detected. 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 behavior. " +"Changes will have effect only on newly mapped (added) LDAP users and groups." +msgstr "" + +#: templates/settings.php:58 +msgid "UUID Attribute for Users:" +msgstr "" + +#: templates/settings.php:59 +msgid "UUID Attribute for Groups:" +msgstr "" + +#: templates/settings.php:60 +msgid "Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:61 +msgid "" +"Usernames are used 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 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. The internal username is used all over." +" Clearing the mappings will have leftovers everywhere. Clearing the mappings" +" is not configuration sensitive, it affects all LDAP configurations! Never " +"clear the mappings in a production environment, only in a testing or " +"experimental stage." +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Username-LDAP User Mapping" +msgstr "" + +#: templates/settings.php:62 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "" diff --git a/l10n/or_IN/user_webdavauth.po b/l10n/or_IN/user_webdavauth.po new file mode 100644 index 00000000000..9d084c23316 --- /dev/null +++ b/l10n/or_IN/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: translations@owncloud.org\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"Last-Translator: I Robot\n" +"Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: or_IN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:2 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:3 +msgid "Address: " +msgstr "" + +#: templates/settings.php:6 +msgid "" +"The user credentials will be sent to this address. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/pa/core.po b/l10n/pa/core.po index 16e79ae93f7..532f3787896 100644 --- a/l10n/pa/core.po +++ b/l10n/pa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -135,63 +135,59 @@ msgstr "ਨਵੰਬ" msgid "December" msgstr "ਦਸੰਬਰ" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "ਸੈਟਿੰਗ" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "...ਸੰਭਾਲਿਆ ਜਾ ਰਿਹਾ ਹੈ" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ਅੱਜ" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "ਮਹੀਨੇ ਪਹਿਲਾਂ" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "ਗਲ" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "ਚੇਤਾਵਨੀ" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/pa/files.po b/l10n/pa/files.po index d8cef14e9a4..d2098c7aa80 100644 --- a/l10n/pa/files.po +++ b/l10n/pa/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "ਅੱਪਲੋਡ" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 4941f0d91be..1e9c29e76cd 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/pl/core.po b/l10n/pl/core.po index f2bcd30e7ed..1fa61458c8c 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,67 +138,63 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Zapisywanie..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzine temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "dziś" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: js/js.js:1107 -msgid "months ago" -msgstr "miesięcy temu" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "lat temu" @@ -303,12 +299,12 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Błąd" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -372,71 +368,71 @@ msgstr "Współdziel poprzez e-mail:" msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupa" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "powiadom przez emaila" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "może edytować" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "utwórz" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uaktualnij" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "usuń" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "współdziel" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail wysłany" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Ostrzeżenie" @@ -464,7 +460,7 @@ msgstr "Edytuj tagi" msgid "Error loading dialog template: {error}" msgstr "Błąd podczas ładowania szablonu dialogu: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nie zaznaczono tagów do usunięcia." diff --git a/l10n/pl/files.po b/l10n/pl/files.po index af048c7ba9f..972f9bcf32d 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -315,8 +315,9 @@ msgid "%s could not be renamed" msgstr "%s nie można zmienić nazwy" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Wyślij" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 69bf7db7ac3..8af3733a05f 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -523,8 +523,8 @@ msgid "Allow mail notification" msgstr "Pozwól na mailowe powiadomienia" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 6a333fe063c..13e8c470ccd 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "novembro" msgid "December" msgstr "dezembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ajustes" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Salvando..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] " ha %n minuto" msgstr[1] "ha %n minutos" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "ha %n hora" msgstr[1] "ha %n horas" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoje" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ontem" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "ha %n dia" msgstr[1] "ha %n dias" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "último mês" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "ha %n mês" msgstr[1] "ha %n meses" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "último ano" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anos atrás" @@ -296,12 +292,12 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -365,71 +361,71 @@ msgstr "Compartilhar via e-mail:" msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "notificar por e-mail" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pode editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "controle de acesso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "criar" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "atualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "remover" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "compartilhar" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Aviso" @@ -457,7 +453,7 @@ msgstr "Editar etiqueta" msgid "Error loading dialog template: {error}" msgstr "Erro carregando diálogo de formatação:{error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nenhuma etiqueta selecionada para deleção." diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index fbd360e35a1..1d25159e22c 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "%s não pode ser renomeado" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Upload" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index a7c133b16a6..5f8c4597d97 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 16:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 16:40+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" @@ -49,7 +49,7 @@ msgstr "Usuários" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." @@ -74,7 +74,7 @@ msgstr "Download ZIP está desligado." msgid "Files need to be downloaded one by one." msgstr "Arquivos precisam ser baixados um de cada vez." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Voltar para Arquivos" @@ -148,15 +148,15 @@ msgstr "Não é possível criar pasta app. Corrija as permissões. %s" msgid "Application is not enabled" msgstr "Aplicação não está habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Erro de autenticação" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirou. Por favor recarregue a página." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Usuário desconhecido" @@ -290,68 +290,68 @@ msgstr "%s compartilhou »%s« com você" msgid "Could not find category \"%s\"" msgstr "Impossível localizar categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segundos atrás" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "ha %n minutos" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "ha %n horas" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hoje" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ontem" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "ha %n dias" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "último mês" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "ha %n meses" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "último ano" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "anos atrás" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Somente os seguintes caracteres são permitidos no nome do usuário: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Forneça um nome de usuário válido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Forneça uma senha válida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Este nome de usuário já está sendo usado" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 7cb0d10fe60..4b4186a1d06 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Permitir notificação por email" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir usuários enviar notificação por email de arquivos compartilhados" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 5f9b5962c61..4db354e6cda 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -141,63 +141,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Configurações" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "A guardar..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto atrás" msgstr[1] "%n minutos atrás" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n hora atrás" msgstr[1] "%n horas atrás" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hoje" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ontem" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dia atrás" msgstr[1] "%n dias atrás" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ultímo mês" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mês atrás" msgstr[1] "%n meses atrás" -#: js/js.js:1107 -msgid "months ago" -msgstr "meses atrás" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ano passado" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "anos atrás" @@ -301,12 +297,12 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Erro" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -370,71 +366,71 @@ msgstr "Partilhar via email:" msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupo" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Notificar por email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "pode editar" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "criar" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizar" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "apagar" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "partilhar" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-mail enviado" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Aviso" @@ -462,7 +458,7 @@ msgstr "Editar etiquetas" msgid "Error loading dialog template: {error}" msgstr "Erro ao carregar modelo de diálogo: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Não foram escolhidas etiquetas para apagar." diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 76c39e0d418..7712e0ca5ed 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s não pode ser renomeada" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Carregar" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 2d44adbc099..725d5683027 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -527,8 +527,8 @@ msgid "Allow mail notification" msgstr "Permitir notificação por email" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index d0f54e679b5..6a5fd3a8b13 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,67 +138,63 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Setări" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Se salvează..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "acum %n minut" msgstr[1] "acum %n minute" msgstr[2] "acum %n minute" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "acum %n oră" msgstr[1] "acum %n ore" msgstr[2] "acum %n ore" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "astăzi" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ieri" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "acum %n zi" msgstr[1] "acum %n zile" msgstr[2] "acum %n zile" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "ultima lună" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "luni în urmă" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ultimul an" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ani în urmă" @@ -303,12 +299,12 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Eroare" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -372,71 +368,71 @@ msgstr "Distribuie prin email:" msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grup" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "poate edita" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "control acces" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "creare" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "actualizare" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ștergere" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "partajare" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Mesajul a fost expediat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Atenție" @@ -464,7 +460,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 56ffcff99ff..bb6268901e4 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -316,8 +316,9 @@ msgid "%s could not be renamed" msgstr "%s nu a putut fi redenumit" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Încărcă" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index ca5e79e740a..edb9cda2e65 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,7 +522,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ru/core.po b/l10n/ru/core.po index b94a9585936..ce2d8e5a1e8 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -24,8 +24,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -151,67 +151,63 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Сохранение..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минуту назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "сегодня" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчера" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: js/js.js:1107 -msgid "months ago" -msgstr "несколько месяцев назад" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "в прошлом году" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "несколько лет назад" @@ -316,12 +312,12 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Ошибка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -385,71 +381,71 @@ msgstr "Поделится через электронную почту:" msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "группа" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "уведомить по почте" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "может редактировать" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контроль доступа" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "создать" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "обновить" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "удалить" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "открыть доступ" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Письмо отправлено" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Предупреждение" @@ -477,7 +473,7 @@ msgstr "Изменить метки" msgid "Error loading dialog template: {error}" msgstr "Ошибка загрузки шаблона диалога: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Не выбраны меток для удаления." diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 848ba105ce1..6f7fbe2af7a 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -321,8 +321,9 @@ msgid "%s could not be renamed" msgstr "%s не может быть переименован" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Загрузка" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 7e562b8b460..8894a197136 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -535,8 +535,8 @@ msgid "Allow mail notification" msgstr "Разрешить уведомление по почте" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Разрешить пользователю оповещать почтой о расшаренных файлах" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 81640e8edeb..29638affc8c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "අද" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "මාස කීපයකට පෙර" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "දෝෂයක්" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "විද්‍යුත් තැපෑල මඟින් බෙදා msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "කණ්ඩායම" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ප්‍රවේශ පාලනය" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "සදන්න" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "මකන්න" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "අවවාදය" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index 65cb451481d..c2b7eceb77d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "උඩුගත කරන්න" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index 18a9854df9a..d276c9ecebe 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 65348532a41..d0b50414ec0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,140 +134,136 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "Zrušiť" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Zdieľať" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -368,71 +364,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "skupina" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 6f6661a4078..e98673d6550 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,37 +213,37 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -309,7 +309,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index bff1d720434..e88024cd09d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index bdf4db71d48..7cbb3c8c84a 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,67 +136,63 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Ukladám..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "dnes" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "včera" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: js/js.js:1107 -msgid "months ago" -msgstr "pred mesiacmi" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "minulý rok" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "pred rokmi" @@ -241,7 +237,7 @@ msgstr "Nové súbory" #: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Už existujúce súbory" #: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" @@ -301,12 +297,12 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Chyba" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -370,71 +366,71 @@ msgstr "Zdieľať cez email:" msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "skupina" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "informovať emailom" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "prístupové práva" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "vytvoriť" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "aktualizovať" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "vymazať" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "zdieľať" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email odoslaný" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Varovanie" @@ -462,7 +458,7 @@ msgstr "Upraviť štítky" msgid "Error loading dialog template: {error}" msgstr "Chyba pri načítaní šablóny dialógu: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Nie sú vybraté štítky na zmazanie." diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 7f7762eae3f..f76a3099e23 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s nemohol byť premenovaný" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Odoslať" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index a57f418836f..6ce0145b55e 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh , 2013 +# mhh , 2013-2014 # martin, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 07: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" @@ -103,7 +103,7 @@ msgstr "Počiatočné šifrovanie započalo ... To môže nejakú dobu trvať. #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Počiatočné šifrovanie beží... Skúste to neskôr znovu." #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -113,91 +113,91 @@ msgstr "Choďte priamo do vášho" msgid "personal settings" msgstr "osobné nastavenia" -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "Šifrovanie" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Povoliť obnovovací kľúč (umožňuje obnoviť používateľské súbory v prípade straty hesla):" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "Heslo obnovovacieho kľúča" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "Zopakujte heslo kľúča pre obnovu" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "Povolené" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "Zakázané" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "Zmeniť heslo obnovovacieho kľúča:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "Staré heslo obnovovacieho kľúča" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "Nové heslo obnovovacieho kľúča" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "Zopakujte nové heslo kľúča pre obnovu" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "Zmeniť heslo" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "Vaše heslo súkromného kľúča je rovnaké ako Vaše prihlasovacie heslo:" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "Nastavte si staré heslo súkromného kľúča k Vášmu súčasnému prihlasovaciemu heslu." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Ak si nepamätáte svoje staré heslo, môžete požiadať správcu o obnovenie svojich súborov." -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "Staré prihlasovacie heslo" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "Súčasné prihlasovacie heslo" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "Aktualizovať heslo súkromného kľúča" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "Povoliť obnovu hesla:" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" 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:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "Nastavenie obnovy súborov aktualizované" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "Nemožno aktualizovať obnovenie súborov" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 0a04a512b63..7054f3c2f50 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# mhh , 2013 +# mhh , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 07: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" @@ -42,34 +42,34 @@ msgstr "Chyba pri konfigurácii úložiska Google drive" msgid "Saved" msgstr "Uložené" -#: lib/config.php:592 +#: lib/config.php:598 msgid "Note: " -msgstr "" +msgstr "Poznámka: " -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " -msgstr "" +msgstr "a" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Poznámka: cURL podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Poznámka: FTP podpora v PHP nie je zapnutá alebo nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Poznámka: \"%s\" nie je nainštalovaná. Pripojenie %s nie je možné. Požiadajte správcu systému, aby ju nainštaloval." #: templates/settings.php:2 msgid "External Storage" @@ -93,7 +93,7 @@ msgstr "Možnosti" #: templates/settings.php:12 msgid "Available for" -msgstr "" +msgstr "K dispozícii pre" #: templates/settings.php:32 msgid "Add storage" @@ -101,7 +101,7 @@ msgstr "Pridať úložisko" #: templates/settings.php:92 msgid "No user or group" -msgstr "" +msgstr "Žiadny používateľ alebo skupina" #: templates/settings.php:95 msgid "All Users" @@ -126,7 +126,7 @@ msgstr "Povoliť externé úložisko" #: templates/settings.php:135 msgid "Allow users to mount the following external storage" -msgstr "" +msgstr "Povoliť používateľom pripojiť tieto externé úložiská" #: templates/settings.php:150 msgid "SSL root certificates" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 6278b3b3245..f39c5f873eb 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Povoliť odosielať upozornenia emailom" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Povoliť používateľom odosielať upozornenia emailom pre svoje zdieľané súbory" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 6d28f29b2e4..255c325f54d 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-22 07: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" @@ -167,7 +167,7 @@ msgstr "Pomoc" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Skupiny spĺňajúce tieto kritériá sú k dispozícii v %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -203,7 +203,7 @@ msgstr "nájdené skupiny" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Používateľov prihlásiť pomocou tohto atribútu:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -271,7 +271,7 @@ msgstr "V rozšírenom nastavení môžete zadať základné DN pre používate #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Obmedziť %s prístup na používateľov spĺňajúcich tieto kritériá:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -340,7 +340,7 @@ msgstr "Pripojiť sa len k záložnému serveru." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "LDAP server je citlivý na veľkosť písmen (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." @@ -415,7 +415,7 @@ msgstr "Priradenie člena skupiny" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Vnorené skupiny" #: templates/settings.php:39 msgid "" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 510618e32b3..8d398d85e7a 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -136,19 +136,19 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minuto" @@ -156,7 +156,7 @@ msgstr[1] "pred %n minutama" msgstr[2] "pred %n minutami" msgstr[3] "pred %n minutami" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n uro" @@ -164,15 +164,15 @@ msgstr[1] "pred %n urama" msgstr[2] "pred %n urami" msgstr[3] "pred %n urami" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "danes" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "včeraj" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "pred %n dnevom" @@ -180,11 +180,11 @@ msgstr[1] "pred %n dnevoma" msgstr[2] "pred %n dnevi" msgstr[3] "pred %n dnevi" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesecem" @@ -192,15 +192,11 @@ msgstr[1] "pred %n mesecema" msgstr[2] "pred %n meseci" msgstr[3] "pred %n meseci" -#: js/js.js:1107 -msgid "months ago" -msgstr "mesecev nazaj" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "lansko leto" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "let nazaj" @@ -467,7 +463,7 @@ msgstr "Uredi oznake" msgid "Error loading dialog template: {error}" msgstr "Napaka nalaganja predloge pogovornega okna: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Ni izbranih oznak za izbris." diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 1e9272d4d53..e5bf374f77e 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -314,8 +314,9 @@ msgid "%s could not be renamed" msgstr "%s ni mogoče preimenovati" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Pošlji" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index fd91045bed6..08a73d58259 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -88,17 +88,17 @@ msgstr "Skupine ni mogoče dodati" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Datoteke so uspešno odšifrirane" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Datotek ni mogoče odšifrirati. Preverite dnevnik owncloud.log ali pa se posvetujte s skrbnikom." #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Datotek ni mogoče odšifrirati. Preverite geslo in poskusite znova." #: ajax/lostpassword.php:12 msgid "Email saved" @@ -522,8 +522,8 @@ msgid "Allow mail notification" msgstr "Dovoli obvestila preko elektronske pošte" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 5c17765aa87..170478f66a9 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,63 +136,59 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Parametra" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Duke ruajtur..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut më parë" msgstr[1] "%n minuta më parë" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n orë më parë" msgstr[1] "%n orë më parë" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "sot" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "dje" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ditë më parë" msgstr[1] "%n ditë më parë" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n muaj më parë" msgstr[1] "%n muaj më parë" -#: js/js.js:1107 -msgid "months ago" -msgstr "muaj më parë" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "vite më parë" @@ -296,12 +292,12 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Veprim i gabuar" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" @@ -365,71 +361,71 @@ msgstr "Nda me email:" msgid "No people found" msgstr "Nuk u gjet asnjë person" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "grupi" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Rindarja nuk lejohet" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Ndarë në {item} me {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Hiq ndarjen" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "mund të ndryshosh" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrollimi i hyrjeve" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "krijo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "azhurno" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "elimino" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "nda" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email-i u dërgua" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -457,7 +453,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sq/files.po b/l10n/sq/files.po index 4232355dcb3..879f8c7555f 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -308,8 +308,9 @@ msgid "%s could not be renamed" msgstr "Nuk është i mundur riemërtimi i %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Ngarko" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 8f882f13d2b..0f7ca7d0239 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sr/core.po b/l10n/sr/core.po index f609ea8b9ff..09d3613ff3a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,67 +134,63 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Поставке" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Чување у току..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "данас" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "јуче" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "месеци раније" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "прошле године" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "година раније" @@ -299,12 +295,12 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Грешка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -368,71 +364,71 @@ msgstr "Подели поштом:" msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Укини дељење" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може да мења" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "права приступа" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "направи" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ажурирај" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "обриши" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "подели" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Порука је послата" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Упозорење" @@ -460,7 +456,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index ea405fff7b3..11e7f11340a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Отпреми" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 9603dcd0c1e..4691d1e387c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index df657f78cac..b4e75d73094 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,67 +136,63 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "Pre par sekundi" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "Danas" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "juče" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Prije %n dan." msgstr[1] "Prije %n dana." msgstr[2] "Prije %n dana." -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "prošlog meseca" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "pre nekoliko meseci" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "prošle godine" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "pre nekoliko godina" @@ -301,12 +297,12 @@ msgstr "Deljeno" msgid "Share" msgstr "Podeli" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Greška" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Greška pri deljenju" @@ -370,71 +366,71 @@ msgstr "Deli putem e-maila" msgid "No people found" msgstr "Nema pronađenih ljudi" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Dalje deljenje nije dozvoljeno" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Deljeno u {item} sa {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Ukljoni deljenje" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "dozvoljene izmene" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "napravi" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "ažuriranje" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "brisanje" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "deljenje" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Zaštćeno lozinkom" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Greška u uklanjanju datuma isteka" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Greška u postavljanju datuma isteka" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Slanje..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email poslat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -462,7 +458,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 0c17a8d6aa3..f7a9bdebf4d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -309,8 +309,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Pošalji" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index dbabd2061b7..312bf5473b5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/su/core.po b/l10n/su/core.po index ac15217b14a..ae84b0e517b 100644 --- a/l10n/su/core.po +++ b/l10n/su/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/su/files.po b/l10n/su/files.po index f02bfd4f577..8de270c09be 100644 --- a/l10n/su/files.po +++ b/l10n/su/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/su/settings.po b/l10n/su/settings.po index b5fd5ad46fd..3d504c44baa 100644 --- a/l10n/su/settings.po +++ b/l10n/su/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 4e288cd7ead..fc9f4fd5939 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: AsavarTzeth \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -142,63 +142,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Inställningar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Sparar..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "i dag" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "i går" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "förra månaden" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: js/js.js:1107 -msgid "months ago" -msgstr "månader sedan" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "förra året" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "år sedan" @@ -302,12 +298,12 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Fel" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Fel vid delning" @@ -371,71 +367,71 @@ msgstr "Dela via e-post:" msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "Grupp" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "informera via e-post" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "kan redigera" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "skapa" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "uppdatera" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "radera" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "dela" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "E-post skickat" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Varning" @@ -463,7 +459,7 @@ msgstr "Editera taggar" msgid "Error loading dialog template: {error}" msgstr "Fel under laddning utav dialog mall: {fel}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Inga taggar valda för borttagning." diff --git a/l10n/sv/files.po b/l10n/sv/files.po index a1f2093bc26..445f27234af 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" -"Last-Translator: AsavarTzeth \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -315,8 +315,9 @@ msgid "%s could not be renamed" msgstr "%s kunde inte namnändras" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Ladda upp" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index d094158f4f8..99f3ae24b86 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: henrikhjelm \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -531,8 +531,8 @@ msgid "Allow mail notification" msgstr "Tillåt e-post notifikation" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Tillåt användare att skicka e-port notifikationer för delade filer" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 4670128c670..61d4b11f7e7 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index e98284e51f3..275cecc8fd5 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 51475acbd40..525ca027ce5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 71bb9a90fc1..01f4c511188 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "சேமிக்கப்படுகிறது..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "இன்று" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "மாதங்களுக்கு முன்" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "வழு" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -363,71 +359,71 @@ msgstr "மின்னஞ்சலினூடான பகிர்வு: " msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "குழு" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "உருவவாக்கல்" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "நீக்குக" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "எச்சரிக்கை" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index 59125f40d87..8b8c81ad678 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,8 +306,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "பதிவேற்றுக" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index edea4a40fb2..fc3cdcea428 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/te/core.po b/l10n/te/core.po index 09c8064439f..8c910964347 100644 --- a/l10n/te/core.po +++ b/l10n/te/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,63 +135,59 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n నిమిషం క్రితం" msgstr[1] "%n నిమిషాల క్రితం" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n గంట క్రితం" msgstr[1] "%n గంటల క్రితం" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "ఈరోజు" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n రోజు క్రితం" msgstr[1] "%n రోజుల క్రితం" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n నెల క్రితం" msgstr[1] "%n నెలల క్రితం" -#: js/js.js:1107 -msgid "months ago" -msgstr "నెలల క్రితం" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "సంవత్సరాల క్రితం" @@ -295,12 +291,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "పొరపాటు" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -364,71 +360,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "తొలగించు" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "హెచ్చరిక" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index e9b3f646ddf..50b0717d87f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 2cafc7c1bf6..aa6d2dc3483 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 0b2245ab078..21a80481792 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -135,63 +135,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -456,7 +452,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 5d016437f58..ea124e27fe9 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -305,7 +305,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 3ebc52afb2c..f0dd2975cce 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\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 c05cc89332a..f7b5e4e305e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\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 14a3151d37b..a20e27c699a 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\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 c4de45e2172..d3fab126a28 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -35,6 +35,10 @@ msgstr "" msgid "Error" msgstr "" +#: js/trash.js:62 templates/index.php:22 templates/index.php:24 +msgid "Restore" +msgstr "" + #: js/trash.js:264 msgid "Deleted Files" msgstr "" @@ -51,10 +55,6 @@ msgstr "" msgid "Name" msgstr "" -#: templates/index.php:22 templates/index.php:24 -msgid "Restore" -msgstr "" - #: templates/index.php:30 msgid "Deleted" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 9f25be229f3..dc51b390525 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\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 805e0b895cc..79fd7165e69 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\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/private.pot b/l10n/templates/private.pot index 2cac8f8b917..c293e6187a7 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\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 56bf1970deb..f52f3d53d70 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -519,7 +519,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 9bb697c59ce..50f8114aafa 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\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 ad4ebbcb2d8..a6d99051683 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\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 2782a3812c7..9486525543e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "กำลังบันทึกข้อมูล..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "วันนี้" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "เดือน ที่ผ่านมา" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -289,12 +285,12 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -358,71 +354,71 @@ msgstr "แชร์ผ่านทางอีเมล" msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "กลุ่มผู้ใช้งาน" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "สร้าง" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "อัพเดท" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ลบ" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "แชร์" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "คำเตือน" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index e770e533830..acd5249bc53 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "อัพโหลด" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 029e848b872..051c00d0c74 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 51a7eb73b68..f25ab1e0b98 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,63 +138,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Kaydediliyor..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "saniyeler önce" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "bugün" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "dün" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "geçen ay" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:1107 -msgid "months ago" -msgstr "aylar önce" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "geçen yıl" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "yıllar önce" @@ -459,7 +455,7 @@ msgstr "Etiketleri düzenle" msgid "Error loading dialog template: {error}" msgstr "İletişim şablonu yüklenirken hata: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Silmek için bir etiket seçilmedi." diff --git a/l10n/tr/files.po b/l10n/tr/files.po index cf5079ec50c..67cdf2e53d5 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -311,8 +311,9 @@ msgid "%s could not be renamed" msgstr "%s yeniden adlandırılamadı" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Yükle" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 1ba73232a77..f5e4733f403 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -524,8 +524,8 @@ msgid "Allow mail notification" msgstr "Posta bilgilendirmesine izin ver" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/tzm/core.po b/l10n/tzm/core.po index 528cc7ed88b..30ead15ba09 100644 --- a/l10n/tzm/core.po +++ b/l10n/tzm/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/tzm/files.po b/l10n/tzm/files.po index 0e5165652ec..707f99a954f 100644 --- a/l10n/tzm/files.po +++ b/l10n/tzm/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po index 614dba76775..87462e65a29 100644 --- a/l10n/tzm/settings.po +++ b/l10n/tzm/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 19bde853e75..e58767e0b00 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -134,59 +134,55 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "ساقلاۋاتىدۇ…" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "بۈگۈن" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "خاتالىق" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "گۇرۇپپا" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ئۆچۈر" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "ئاگاھلاندۇرۇش" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index f9d8866073d..8433443fbac 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "يۈكلە" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index fe39905af32..af673c0410d 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 9bfa59aee1f..466adb3e734 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -135,67 +135,63 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Налаштування" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Зберігаю..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n хвилину тому" msgstr[1] "%n хвилини тому" msgstr[2] "%n хвилин тому" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n годину тому" msgstr[1] "%n години тому" msgstr[2] "%n годин тому" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "сьогодні" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "вчора" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день тому" msgstr[1] "%n дні тому" msgstr[2] "%n днів тому" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "минулого місяця" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n місяць тому" msgstr[1] "%n місяці тому" msgstr[2] "%n місяців тому" -#: js/js.js:1107 -msgid "months ago" -msgstr "місяці тому" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "минулого року" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "роки тому" @@ -300,12 +296,12 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Помилка" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -369,71 +365,71 @@ msgstr "Опублікувати через Ел. пошту:" msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "група" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Закрити доступ" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "повідомити по Email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "може редагувати" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "контроль доступу" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "створити" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "оновити" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "видалити" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "опублікувати" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Ел. пошта надіслана" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Попередження" @@ -461,7 +457,7 @@ msgstr "Редагувати теги" msgid "Error loading dialog template: {error}" msgstr "Помилка при завантаженні шаблону діалогу: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Жодних тегів не обрано для видалення." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index af74248bb40..cbb9d10fe2e 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# zubr139 , 2013 +# zubr139, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -310,8 +310,9 @@ msgid "%s could not be renamed" msgstr "%s не може бути перейменований" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Вивантажити" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index bf659a93c18..481bf1bd976 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# zubr139 , 2013 +# zubr139, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ur/core.po b/l10n/ur/core.po index ccec776d8f5..7324073f773 100644 --- a/l10n/ur/core.po +++ b/l10n/ur/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -134,135 +134,131 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" msgstr[1] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ur/files.po b/l10n/ur/files.po index 7b6b3cbb2c0..5a528dd0787 100644 --- a/l10n/ur/files.po +++ b/l10n/ur/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po index ce88154e1b7..f346523b7a6 100644 --- a/l10n/ur/settings.po +++ b/l10n/ur/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index b00b13ab255..3a8d9c43dca 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,63 +134,59 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -294,12 +290,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "ایرر" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -363,71 +359,71 @@ msgstr "" msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "ختم کریں" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "شئیر کریں" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -455,7 +451,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index 1d52677ac9f..d4889dd755e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -306,7 +306,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 5bb896a5f83..a365ceecd66 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/uz/core.po b/l10n/uz/core.po index 6685162cdfb..f673c079f65 100644 --- a/l10n/uz/core.po +++ b/l10n/uz/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-08 01:56-0400\n" -"PO-Revision-Date: 2014-04-08 05:56+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -134,130 +134,126 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1124 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1125 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1126 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1127 +#: js/js.js:1249 msgid "today" msgstr "" -#: js/js.js:1128 +#: js/js.js:1250 msgid "yesterday" msgstr "" -#: js/js.js:1129 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1130 +#: js/js.js:1252 msgid "last month" msgstr "" -#: js/js.js:1131 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1132 -msgid "months ago" -msgstr "" - -#: js/js.js:1133 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1134 +#: js/js.js:1255 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:123 +#: js/oc-dialogs.js:125 msgid "Choose" msgstr "" -#: js/oc-dialogs.js:146 +#: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" msgstr "" -#: js/oc-dialogs.js:172 +#: js/oc-dialogs.js:177 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:182 +#: js/oc-dialogs.js:187 msgid "No" msgstr "" -#: js/oc-dialogs.js:199 +#: js/oc-dialogs.js:204 msgid "Ok" msgstr "" -#: js/oc-dialogs.js:219 +#: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" msgstr "" -#: js/oc-dialogs.js:347 +#: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" msgstr[0] "" -#: js/oc-dialogs.js:361 +#: js/oc-dialogs.js:366 msgid "One file conflict" msgstr "" -#: js/oc-dialogs.js:367 +#: js/oc-dialogs.js:372 msgid "New Files" msgstr "" -#: js/oc-dialogs.js:368 +#: js/oc-dialogs.js:373 msgid "Already existing files" msgstr "" -#: js/oc-dialogs.js:370 +#: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" msgstr "" -#: js/oc-dialogs.js:371 +#: js/oc-dialogs.js:376 msgid "" "If you select both versions, the copied file will have a number added to its" " name." msgstr "" -#: js/oc-dialogs.js:379 +#: js/oc-dialogs.js:384 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:389 +#: js/oc-dialogs.js:394 msgid "Continue" msgstr "" -#: js/oc-dialogs.js:436 js/oc-dialogs.js:449 +#: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" msgstr "" -#: js/oc-dialogs.js:439 js/oc-dialogs.js:452 +#: js/oc-dialogs.js:444 js/oc-dialogs.js:458 msgid "({count} selected)" msgstr "" -#: js/oc-dialogs.js:460 +#: js/oc-dialogs.js:466 msgid "Error loading file exists template" msgstr "" @@ -289,12 +285,12 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:711 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "" -#: js/share.js:160 js/share.js:767 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "" @@ -358,71 +354,71 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:324 js/share.js:363 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:335 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:379 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:401 +#: js/share.js:423 msgid "Unshare" msgstr "" -#: js/share.js:409 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:412 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:414 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:417 +#: js/share.js:439 msgid "create" msgstr "" -#: js/share.js:420 +#: js/share.js:442 msgid "update" msgstr "" -#: js/share.js:423 +#: js/share.js:445 msgid "delete" msgstr "" -#: js/share.js:426 +#: js/share.js:448 msgid "share" msgstr "" -#: js/share.js:698 +#: js/share.js:721 msgid "Password protected" msgstr "" -#: js/share.js:711 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:729 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:754 +#: js/share.js:777 msgid "Sending ..." msgstr "" -#: js/share.js:765 +#: js/share.js:788 msgid "Email sent" msgstr "" -#: js/share.js:789 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/uz/files.po b/l10n/uz/files.po index cbb3c8601e9..8a8f954d40a 100644 --- a/l10n/uz/files.po +++ b/l10n/uz/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-04 01:55-0400\n" -"PO-Revision-Date: 2014-04-04 05:55+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -42,7 +42,7 @@ msgid "" "allowed." msgstr "" -#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:145 +#: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 #: lib/app.php:65 msgid "The target folder has been moved or deleted." msgstr "" @@ -127,15 +127,15 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:159 +#: ajax/upload.php:169 msgid "Upload failed. Could not find uploaded file" msgstr "" -#: ajax/upload.php:169 +#: ajax/upload.php:179 msgid "Upload failed. Could not get file info." msgstr "" -#: ajax/upload.php:184 +#: ajax/upload.php:194 msgid "Invalid directory." msgstr "" @@ -143,53 +143,53 @@ msgstr "" msgid "Files" msgstr "" -#: js/file-upload.js:247 +#: js/file-upload.js:254 msgid "Unable to upload {filename} as it is a directory or has 0 bytes" msgstr "" -#: js/file-upload.js:258 +#: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" msgstr "" -#: js/file-upload.js:268 +#: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" msgstr "" -#: js/file-upload.js:340 +#: js/file-upload.js:353 msgid "Upload cancelled." msgstr "" -#: js/file-upload.js:385 +#: js/file-upload.js:398 msgid "Could not get result from server." msgstr "" -#: js/file-upload.js:477 +#: js/file-upload.js:490 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/file-upload.js:542 +#: js/file-upload.js:555 msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:546 +#: js/file-upload.js:559 msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:548 js/filelist.js:603 +#: js/file-upload.js:561 js/filelist.js:585 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:600 +#: js/file-upload.js:613 msgid "Could not create file" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:626 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:653 +#: js/file-upload.js:666 msgid "Error fetching URL" msgstr "" @@ -213,33 +213,33 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:267 js/filelist.js:1113 +#: js/filelist.js:251 js/filelist.js:1129 msgid "Pending" msgstr "" -#: js/filelist.js:630 +#: js/filelist.js:612 msgid "Could not rename file" msgstr "" -#: js/filelist.js:789 +#: js/filelist.js:775 msgid "Error deleting file." msgstr "" -#: js/filelist.js:814 js/filelist.js:891 js/files.js:589 +#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:815 js/filelist.js:892 js/files.js:595 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:822 +#: js/filelist.js:808 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1052 js/filelist.js:1090 +#: js/filelist.js:1037 js/filelist.js:1076 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -303,7 +303,8 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" +#, php-format +msgid "Upload (max. %s)" msgstr "" #: templates/admin.php:4 diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po index bd278d7cf08..a63bd15c83b 100644 --- a/l10n/uz/settings.po +++ b/l10n/uz/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-12 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 05:54+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 4cc800ca832..ec8e73f8f1b 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -138,59 +138,55 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "Đang lưu..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n phút trước" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n giờ trước" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "hôm nay" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n ngày trước" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "tháng trước" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n tháng trước" -#: js/js.js:1107 -msgid "months ago" -msgstr "tháng trước" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "năm trước" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "năm trước" @@ -293,12 +289,12 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "Lỗi" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -362,71 +358,71 @@ msgstr "Chia sẻ thông qua email" msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "nhóm" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "Thông báo qua email" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "tạo" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "cập nhật" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "xóa" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "chia sẻ" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email đã được gửi" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "Cảnh báo" @@ -454,7 +450,7 @@ msgstr "Sửa thẻ" msgid "Error loading dialog template: {error}" msgstr "Lỗi khi tải mẫu hội thoại: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "Không có thẻ nào được chọn để xóa" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index 97655a16ced..824d518f559 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s không thể đổi tên" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "Tải lên" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index f62d71cb7e9..2b090bd48a1 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,7 +521,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 8a5f79f1669..543b6afc926 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 14:43+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -139,59 +139,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "设置" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "保存中" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "秒前" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今天" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨天" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "上月" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: js/js.js:1107 -msgid "months ago" -msgstr "月前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "去年" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "年前" @@ -455,7 +451,7 @@ msgstr "编辑标签" msgid "Error loading dialog template: {error}" msgstr "加载对话框模板出错: {error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "请选择要删除的标签。" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 77df595e7f7..1078d24b82e 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -307,8 +307,9 @@ msgid "%s could not be renamed" msgstr "%s 不能被重命名" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "上传" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index c0450bf1c7c..38db6ba96f8 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -527,8 +527,8 @@ msgid "Allow mail notification" msgstr "允许邮件通知" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "允许用户为共享的文件发送邮件通知" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 1c9c0476f6f..6cf893c49ed 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -134,59 +134,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "設定" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "" -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今日" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨日" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "前一月" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: js/js.js:1107 -msgid "months ago" -msgstr "個月之前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "" @@ -289,12 +285,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -358,71 +354,71 @@ msgstr "以電郵分享" msgid "No people found" msgstr "找不到" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "取消分享" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "新增" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "更新" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "刪除" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "分享" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "郵件已傳" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "" @@ -450,7 +446,7 @@ msgstr "" msgid "Error loading dialog template: {error}" msgstr "" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index ebc01669309..2e161107847 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -303,8 +303,9 @@ msgid "%s could not be renamed" msgstr "" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "上傳" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index b2f87f35619..7021c16fcae 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -520,7 +520,7 @@ msgid "Allow mail notification" msgstr "" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" +msgid "Allow users to send mail notification for shared files" msgstr "" #: templates/admin.php:261 diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 84b69c5f755..db4cd8f43d8 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -136,59 +136,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:479 +#: js/js.js:489 msgid "Settings" msgstr "設定" -#: js/js.js:564 +#: js/js.js:589 msgid "Saving..." msgstr "儲存中..." -#: js/js.js:1099 +#: js/js.js:1246 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:1100 +#: js/js.js:1247 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: js/js.js:1101 +#: js/js.js:1248 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: js/js.js:1102 +#: js/js.js:1249 msgid "today" msgstr "今天" -#: js/js.js:1103 +#: js/js.js:1250 msgid "yesterday" msgstr "昨天" -#: js/js.js:1104 +#: js/js.js:1251 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: js/js.js:1105 +#: js/js.js:1252 msgid "last month" msgstr "上個月" -#: js/js.js:1106 +#: js/js.js:1253 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: js/js.js:1107 -msgid "months ago" -msgstr "幾個月前" - -#: js/js.js:1108 +#: js/js.js:1254 msgid "last year" msgstr "去年" -#: js/js.js:1109 +#: js/js.js:1255 msgid "years ago" msgstr "幾年前" @@ -291,12 +287,12 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:731 +#: js/share.js:158 js/share.js:171 js/share.js:178 js/share.js:734 #: templates/installation.php:10 msgid "Error" msgstr "錯誤" -#: js/share.js:160 js/share.js:787 +#: js/share.js:160 js/share.js:790 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -360,71 +356,71 @@ msgstr "透過電子郵件分享:" msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:324 js/share.js:383 +#: js/share.js:324 js/share.js:385 msgid "group" msgstr "群組" -#: js/share.js:355 +#: js/share.js:357 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:399 +#: js/share.js:401 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:421 +#: js/share.js:423 msgid "Unshare" msgstr "取消分享" -#: js/share.js:429 +#: js/share.js:431 msgid "notify by email" msgstr "以 email 通知" -#: js/share.js:432 +#: js/share.js:434 msgid "can edit" msgstr "可編輯" -#: js/share.js:434 +#: js/share.js:436 msgid "access control" msgstr "存取控制" -#: js/share.js:437 +#: js/share.js:439 msgid "create" msgstr "建立" -#: js/share.js:440 +#: js/share.js:442 msgid "update" msgstr "更新" -#: js/share.js:443 +#: js/share.js:445 msgid "delete" msgstr "刪除" -#: js/share.js:446 +#: js/share.js:448 msgid "share" msgstr "分享" -#: js/share.js:718 +#: js/share.js:721 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:731 +#: js/share.js:734 msgid "Error unsetting expiration date" msgstr "取消到期日設定失敗" -#: js/share.js:749 +#: js/share.js:752 msgid "Error setting expiration date" msgstr "設定到期日發生錯誤" -#: js/share.js:774 +#: js/share.js:777 msgid "Sending ..." msgstr "正在傳送…" -#: js/share.js:785 +#: js/share.js:788 msgid "Email sent" msgstr "Email 已寄出" -#: js/share.js:809 +#: js/share.js:812 msgid "Warning" msgstr "警告" @@ -452,7 +448,7 @@ msgstr "編輯標籤" msgid "Error loading dialog template: {error}" msgstr "載入對話樣板出錯:{error}" -#: js/tags.js:261 +#: js/tags.js:264 msgid "No tags selected for deletion." msgstr "沒有選擇要刪除的標籤" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index fa6a8e3db22..93e6dfb09ef 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:40+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -305,8 +305,9 @@ msgid "%s could not be renamed" msgstr "無法重新命名 %s" #: lib/helper.php:14 templates/index.php:22 -msgid "Upload" -msgstr "上傳" +#, php-format +msgid "Upload (max. %s)" +msgstr "" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 1e1d3a76690..d67101ebc53 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" +"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 05:54+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" @@ -521,8 +521,8 @@ msgid "Allow mail notification" msgstr "允許郵件通知" #: templates/admin.php:254 -msgid "Allow user to send mail notification for shared files" -msgstr "允許使用者分享檔案時寄出通知郵件" +msgid "Allow users to send mail notification for shared files" +msgstr "" #: templates/admin.php:261 msgid "Security" diff --git a/lib/l10n/es_CR.php b/lib/l10n/es_CR.php new file mode 100644 index 00000000000..15f78e0bce6 --- /dev/null +++ b/lib/l10n/es_CR.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/or_IN.php b/lib/l10n/or_IN.php new file mode 100644 index 00000000000..15f78e0bce6 --- /dev/null +++ b/lib/l10n/or_IN.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index cdc689a211c..d62c69adfac 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -101,7 +101,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "السماح للمستعملين بإعادة المشاركة مع أي أحد ", "Allow users to only share with users in their groups" => "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم", "Allow mail notification" => "السماح بتنبيهات البريد الالكتروني.", -"Allow user to send mail notification for shared files" => "السماح للمستخدم الى ارسال تنبيه البريد الالكتروني للملفات المشتركة ", "Security" => "حماية", "Enforce HTTPS" => "فرض HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 9f1d51fd627..0a4324e5a58 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permet compartir amb qualsevol", "Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb els usuaris del seu grup", "Allow mail notification" => "Permet notificacions per correu electrónic", -"Allow user to send mail notification for shared files" => "Permet a l'usuari enviar notificacions de fitxers compartits per correu ", "Security" => "Seguretat", "Enforce HTTPS" => "Força HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Força la connexió dels clients a %s a través d'una connexió encriptada.", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 1f3c111a17d..cbe552d23d2 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -16,6 +16,8 @@ $TRANSLATIONS = array( "Unable to change full name" => "Nelze změnit celé jméno", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora", +"Couldn't decrypt your files, check your password and try again" => "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu", "Email saved" => "E-mail uložen", "Invalid email" => "Neplatný e-mail", "Unable to delete group" => "Nelze smazat skupinu", @@ -111,7 +113,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", "Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", "Allow mail notification" => "Povolit e-mailová upozornění", -"Allow user to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", "Security" => "Zabezpečení", "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", diff --git a/settings/l10n/da.php b/settings/l10n/da.php index df8d2c419b9..0a755da9fd3 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -101,7 +101,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Tillad brugere at dele med alle", "Allow users to only share with users in their groups" => "Tillad brugere at kun dele med brugerne i deres grupper", "Allow mail notification" => "Tillad mail underretninger", -"Allow user to send mail notification for shared files" => "Tillad brugere at sende mail underretninger for delte filer", "Security" => "Sikkerhed", "Enforce HTTPS" => "Gennemtving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tving klienten til at forbinde til %s via en kryptetet forbindelse.", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 13395d20523..e9105c8dda7 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", -"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "Erzwinge HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 2cfffdd374d..8b9c455401c 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", -"Allow user to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index 8655fa05c7c..1ca97b63da8 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -111,7 +111,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Επιτρέπεται στους χρήστες ο διαμοιρασμός με οποιονδήποτε", "Allow users to only share with users in their groups" => "Επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", "Allow mail notification" => "Επιτρέπονται ειδοποιήσεις ηλεκτρονικού ταχυδρομείου", -"Allow user to send mail notification for shared files" => "Επιτρέπει τους χρήστες να στέλνουν ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου για κοινόχρηστα αρχεία", "Security" => "Ασφάλεια", "Enforce HTTPS" => "Επιβολή χρήσης HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Επιβάλλει τους πελάτες να συνδέονται στο %s μέσω κρυπτογραφημένης σύνδεσης.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index b377a6b3381..c61d1c8de2e 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Unable to change full name", "Group already exists" => "Group already exists", "Unable to add group" => "Unable to add group", +"Files decrypted successfully" => "Files decrypted successfully", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Couldn't decrypt your files, please check your owncloud.log or ask your administrator", +"Couldn't decrypt your files, check your password and try again" => "Couldn't decrypt your files, check your password and try again", "Email saved" => "Email saved", "Invalid email" => "Invalid email", "Unable to delete group" => "Unable to delete group", @@ -111,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Allow users to share with anyone", "Allow users to only share with users in their groups" => "Allow users to only share with users in their groups", "Allow mail notification" => "Allow mail notification", -"Allow user to send mail notification for shared files" => "Allow user to send mail notification for shared files", "Security" => "Security", "Enforce HTTPS" => "Enforce HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forces the clients to connect to %s via an encrypted connection.", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 313808cdc78..030106071cf 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", "Allow mail notification" => "Permitir notificaciones por correo electrónico", -"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index b637dd4f147..6e8bc71132e 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -89,7 +89,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera.", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los de sus mismos grupos", "Allow mail notification" => "Permitir notificaciones por correo", -"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo para archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada.", diff --git a/settings/l10n/es_MX.php b/settings/l10n/es_MX.php index abfeaa577d2..2eb3946cbba 100644 --- a/settings/l10n/es_MX.php +++ b/settings/l10n/es_MX.php @@ -88,7 +88,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", "Allow mail notification" => "Permitir notificaciones por correo electrónico", -"Allow user to send mail notification for shared files" => "Permitir al usuario enviar notificaciones por correo electrónico de archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 677ae3d6bb6..b46e0138c1d 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -111,7 +111,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Luba kasutajatel kõigiga jagada", "Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", "Allow mail notification" => "Luba teavitused e-postiga", -"Allow user to send mail notification for shared files" => "Luba kasutajatel saata jagatud failide kohta e-postiga teavitusi", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", "Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.", diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 0225fb00f65..054a40a61b9 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -81,7 +81,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Baimendu erabiltzaileak edonorekin elkarbanatzen", "Allow users to only share with users in their groups" => "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen", "Allow mail notification" => "Baimendu posta bidezko jakinarazpenak", -"Allow user to send mail notification for shared files" => "Baimendu erabiltzailea posta bidezko jakinarazpenak bidaltzen partekatutako fitxategietarako", "Security" => "Segurtasuna", "Enforce HTTPS" => "Behartu HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu.", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index bec91c69706..f42a263c3ff 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "اجازه به کابران برای اشتراک گذاری با همه", "Allow users to only share with users in their groups" => "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان", "Allow mail notification" => "مجاز نمودن اطلاع رسانی توسط ایمیل", -"Allow user to send mail notification for shared files" => "مجاز نمودن ارسال ایمیل توسط کاربر برای فایل‌های به اشتراک گذاشته شده", "Security" => "امنیت", "Enforce HTTPS" => "وادار کردن HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "کلاینت‌ها را مجبور کن که از یک ارتباط رمزنگاری شده برای اتصال به %s استفاده کنند.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index bbceeb1983f..d11ab032a0d 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -101,7 +101,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Salli käyttäjien jakaa kenen tahansa kanssa", "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", "Allow mail notification" => "Salli sähköposti-ilmoitukset", -"Allow user to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 9475f6017fa..7380a7abdea 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Autoriser les utilisateurs à partager avec tout le monde", "Allow users to only share with users in their groups" => "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement", "Allow mail notification" => "Autoriser les notifications par couriel", -"Allow user to send mail notification for shared files" => "Autoriser l'utilisateur à envoyer une notification par couriel concernant les fichiers partagés", "Security" => "Sécurité", "Enforce HTTPS" => "Forcer HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forcer les clients à se connecter à %s via une connexion chiffrée.", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index e0abc8e95b8..b320609dd9f 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que os usuarios compartan con calquera", "Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos", "Allow mail notification" => "Permitir o envío de notificacións por correo", -"Allow user to send mail notification for shared files" => "Permitir que os usuarios envíen notificacións por correo dos ficheiros compartidos", "Security" => "Seguranza", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index b3492b9fd76..a4133dbe403 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -89,7 +89,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "A felhasználók bárkivel megoszthatják állományaikat", "Allow users to only share with users in their groups" => "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak", "Allow mail notification" => "E-mail értesítések engedélyezése", -"Allow user to send mail notification for shared files" => "Engedélyezi, hogy a felhasználók e-mail értesítést küldhessenek a megosztott fájlokról.", "Security" => "Biztonság", "Enforce HTTPS" => "Kötelező HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz.", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index a7b59d82f84..07c46a673d3 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -87,7 +87,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Izinkan pengguna untuk berbagi kepada siapa saja", "Allow users to only share with users in their groups" => "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri", "Allow mail notification" => "Izinkan pemberitahuan email", -"Allow user to send mail notification for shared files" => "Izinkan pengguna mengirim pemberitahuan email pada berkas yang dibagikan", "Security" => "Keamanan", "Enforce HTTPS" => "Selalu Gunakan HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi.", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index dd32d4029de..dd790b85112 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi", "Allow mail notification" => "Consenti le notifiche tramite posta elettronica", -"Allow user to send mail notification for shared files" => "Consenti all'utente di inviare notifiche tramite posta elettronica per i file condivisi", "Security" => "Protezione", "Enforce HTTPS" => "Forza HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.", diff --git a/settings/l10n/ja.php b/settings/l10n/ja.php index 7a2802d588a..ec52c74e2a8 100644 --- a/settings/l10n/ja.php +++ b/settings/l10n/ja.php @@ -108,7 +108,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "ユーザーに誰とでも共有することを許可する", "Allow users to only share with users in their groups" => "ユーザーにグループ内のユーザーとのみ共有を許可する", "Allow mail notification" => "メール通知を許可", -"Allow user to send mail notification for shared files" => "共有ファイルに関するメール通知の送信をユーザーに許可する", "Security" => "セキュリティ", "Enforce HTTPS" => "常にHTTPSを使用する", "Forces the clients to connect to %s via an encrypted connection." => "クライアントから %sへの接続を常に暗号化します。", diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index a4506975e89..b17a25e4c32 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -98,7 +98,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "누구나와 공유할 수 있도록 허용", "Allow users to only share with users in their groups" => "사용자가 속해 있는 그룹의 사용자에게만 공유할 수 있도록 허용", "Allow mail notification" => "메일 알림 허용", -"Allow user to send mail notification for shared files" => "사용자에게 공유 파일에 대한 메일 알림을 허용합니다", "Security" => "보안", "Enforce HTTPS" => "HTTPS 강제 사용", "Forces the clients to connect to %s via an encrypted connection." => "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다.", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index d86d5086f0d..2e7036aaaed 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -77,7 +77,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Leisti naudotojams dalintis su bet kuo", "Allow users to only share with users in their groups" => "Leisti naudotojams dalintis tik su naudotojais savo grupėje", "Allow mail notification" => "Leisti el. pašto perspėjimą", -"Allow user to send mail notification for shared files" => "Leisti naudotojui siųsti perspėjimą el. laišku dėl bendrinamų failų", "Security" => "Saugumas", "Enforce HTTPS" => "Reikalauti HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Verčia klientus jungtis prie %s per šifruotą ryšį.", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 00f2c7c2ad9..975079eb39e 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -57,7 +57,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Овозможи корисниците да споделуваат со секого", "Allow users to only share with users in their groups" => "Овозможи корисниците да споделуваат со корисници од своите групи", "Allow mail notification" => "Овозможи известување по електронска пошта", -"Allow user to send mail notification for shared files" => "Овозможи корисник да испраќа известување по електронска пошта за споделени датотеки", "Security" => "Безбедност", "Enforce HTTPS" => "Наметни HTTPS", "Server address" => "Адреса на сервер", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 244881d306d..a43bde76bcc 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -97,7 +97,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Tillat brukere å dele med alle", "Allow users to only share with users in their groups" => "Tillat kun deling med andre brukere i samme gruppe", "Allow mail notification" => "Tillat påminnelser i e-post", -"Allow user to send mail notification for shared files" => "Tillat at brukere sender epost-påminnelser for delte filer", "Security" => "Sikkerhet", "Enforce HTTPS" => "Tving HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvinger klientene til å koble til %s via en kryptert forbindelse.", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 1f8342df6c5..a88725fd5f0 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Toestaan dat gebruikers met iedereen delen", "Allow users to only share with users in their groups" => "Instellen dat gebruikers alleen met leden binnen hun groepen delen", "Allow mail notification" => "Toestaan e-mailnotificaties", -"Allow user to send mail notification for shared files" => "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Security" => "Beveiliging", "Enforce HTTPS" => "Afdwingen HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Dwingt de clients om een versleutelde verbinding te maken met %s", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 15df48bb311..ff93b7b1be1 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", "Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", "Allow mail notification" => "Pozwól na mailowe powiadomienia", -"Allow user to send mail notification for shared files" => "Pozwól użytkownikom wysyłać maile powiadamiające o udostępnionych plikach", "Security" => "Bezpieczeństwo", "Enforce HTTPS" => "Wymuś HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index bf15e99d426..aae9027ba35 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que usuários compartilhem com qualquer um", "Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos", "Allow mail notification" => "Permitir notificação por email", -"Allow user to send mail notification for shared files" => "Permitir usuários enviar notificação por email de arquivos compartilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index ee8a9217f5d..e4f34141ab0 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -95,7 +95,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que os utilizadores partilhem com todos", "Allow users to only share with users in their groups" => "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo", "Allow mail notification" => "Permitir notificação por email", -"Allow user to send mail notification for shared files" => "Permitir que o utilizador envie notificações por correio electrónico para ficheiros partilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forçar os clientes a ligar a %s através de uma ligação encriptada", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 9cbdeee2c23..81bb6f1755b 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -95,7 +95,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Разрешить пользователя делать общий доступ любому", "Allow users to only share with users in their groups" => "Разрешить пользователям делать общий доступ только для пользователей их групп", "Allow mail notification" => "Разрешить уведомление по почте", -"Allow user to send mail notification for shared files" => "Разрешить пользователю оповещать почтой о расшаренных файлах", "Security" => "Безопасность", "Enforce HTTPS" => "Принудить к HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Принудить клиентов подключаться к %s через шифрованное соединение.", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index afe548a1e0d..d0143e91cb8 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -102,7 +102,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Povoliť používateľom zdieľať s kýmkoľvek", "Allow users to only share with users in their groups" => "Povoliť používateľom zdieľať len s používateľmi v ich skupinách", "Allow mail notification" => "Povoliť odosielať upozornenia emailom", -"Allow user to send mail notification for shared files" => "Povoliť používateľom odosielať upozornenia emailom pre svoje zdieľané súbory", "Security" => "Zabezpečenie", "Enforce HTTPS" => "Vynútiť HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynúti pripájanie klientov k %s šifrovaným pripojením.", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 017d8a4235c..4be0dbc6ee7 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -13,6 +13,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Ni mogoče spremeniti polnega imena", "Group already exists" => "Skupina že obstaja", "Unable to add group" => "Skupine ni mogoče dodati", +"Files decrypted successfully" => "Datoteke so uspešno odšifrirane", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Datotek ni mogoče odšifrirati. Preverite dnevnik owncloud.log ali pa se posvetujte s skrbnikom.", +"Couldn't decrypt your files, check your password and try again" => "Datotek ni mogoče odšifrirati. Preverite geslo in poskusite znova.", "Email saved" => "Elektronski naslov je shranjen", "Invalid email" => "Neveljaven elektronski naslov", "Unable to delete group" => "Skupine ni mogoče izbrisati", @@ -105,7 +108,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli", "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine", "Allow mail notification" => "Dovoli obvestila preko elektronske pošte", -"Allow user to send mail notification for shared files" => "Dovoli uporabniku poslati obvestila preko elektronske pošte za datoteke v souporabi", "Security" => "Varnost", "Enforce HTTPS" => "Zahtevaj uporabo HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vsili povezavo odjemalca z %s preko šifrirane povezave.", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index b5c87945580..0d70fc225fa 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Tillåt delning med alla", "Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Allow mail notification" => "Tillåt e-post notifikation", -"Allow user to send mail notification for shared files" => "Tillåt användare att skicka e-port notifikationer för delade filer", "Security" => "Säkerhet", "Enforce HTTPS" => "Kräv HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 4fdd08b2c4a..89d7f8d2b14 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -114,7 +114,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver", "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", "Allow mail notification" => "Posta bilgilendirmesine izin ver", -"Allow user to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcının posta bildirimi göndermesine izin ver", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.", diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 25943b70207..e83892144f0 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -79,7 +79,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "允许用户向任何人共享", "Allow users to only share with users in their groups" => "允许用户只向同组用户共享", "Allow mail notification" => "允许邮件通知", -"Allow user to send mail notification for shared files" => "允许用户为共享的文件发送邮件通知", "Security" => "安全", "Enforce HTTPS" => "强制使用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "强制客户端通过加密连接连接到%s。", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index f7c834c5d82..242b72abc21 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -76,7 +76,6 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "允許使用者與任何人分享檔案", "Allow users to only share with users in their groups" => "僅允許使用者在群組內分享", "Allow mail notification" => "允許郵件通知", -"Allow user to send mail notification for shared files" => "允許使用者分享檔案時寄出通知郵件", "Security" => "安全性", "Enforce HTTPS" => "強制啟用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "強迫用戶端使用加密連線連接到 %s", -- cgit v1.2.3 From e0cac32442af1986d2a202ec708fce8d537bb12c Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Wed, 23 Apr 2014 10:08:14 +0200 Subject: fixing some JSHint warnings --- apps/user_ldap/js/ldapFilter.js | 25 +++++++++++++------------ apps/user_ldap/js/settings.js | 10 +++++----- 2 files changed, 18 insertions(+), 17 deletions(-) (limited to 'apps') diff --git a/apps/user_ldap/js/ldapFilter.js b/apps/user_ldap/js/ldapFilter.js index 0d691647944..df3bd67aec2 100644 --- a/apps/user_ldap/js/ldapFilter.js +++ b/apps/user_ldap/js/ldapFilter.js @@ -1,3 +1,5 @@ +/* global LdapWizard */ + function LdapFilter(target) { this.locked = true; this.target = false; @@ -49,12 +51,12 @@ LdapFilter.prototype.compose = function() { LdapWizard.detectGroupMemberAssoc(); } }, - function (result) { + function () { console.log('LDAP Wizard: could not compose filter. '+ 'Please check owncloud.log'); } ); -} +}; LdapFilter.prototype.determineMode = function() { var param = 'action=get'+encodeURIComponent(this.target)+'FilterMode'+ @@ -64,13 +66,13 @@ LdapFilter.prototype.determineMode = function() { var filter = this; LdapWizard.ajax(param, function(result) { - property = 'ldap' + filter.target + 'FilterMode'; - filter.mode = parseInt(result.changes[property]); - if(filter.mode === LdapWizard.filterModeRaw - && $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + var property = 'ldap' + filter.target + 'FilterMode'; + filter.mode = parseInt(result.changes[property], 10); + if(filter.mode === LdapWizard.filterModeRaw && + $('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); - } else if(filter.mode === LdapWizard.filterModeAssisted - && !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { + } else if(filter.mode === LdapWizard.filterModeAssisted && + !$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); } else { console.log('LDAP Wizard determineMode: returned mode was »' + @@ -78,7 +80,7 @@ LdapFilter.prototype.determineMode = function() { } filter.unlock(); }, - function (result) { + function () { //on error case get back to default i.e. Assisted if(!$('#raw'+filter.target+'FilterContainer').hasClass('invisible')) { LdapWizard['toggleRaw'+filter.target+'Filter'](); @@ -87,8 +89,7 @@ LdapFilter.prototype.determineMode = function() { filter.unlock(); } ); - -} +}; LdapFilter.prototype.unlock = function() { this.locked = false; @@ -96,4 +97,4 @@ LdapFilter.prototype.unlock = function() { this.lazyRunCompose = false; this.compose(); } -} +}; diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index 80e08572397..fca2dc13d15 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -14,7 +14,7 @@ var LdapConfiguration = { //deal with Checkboxes if($(elementID).is('input[type=checkbox]')) { - if(parseInt(configvalue) === 1) { + if(parseInt(configvalue, 10) === 1) { $(elementID).attr('checked', 'checked'); } else { $(elementID).removeAttr('checked'); @@ -478,7 +478,7 @@ var LdapWizard = { }, functionalityCheck: function() { - //criterias to enable the connection: + //criteria to enable the connection: // - host, port, basedn, user filter, login filter host = $('#ldap_host').val(); port = $('#ldap_port').val(); @@ -556,7 +556,7 @@ var LdapWizard = { noneSelectedText: caption, click: function(event, ui) { LdapWizard.saveMultiSelect(id, - $('#'+id).multiselect("getChecked")); + $('#'+id).multiselect("getChecked")); } }); }, @@ -575,8 +575,8 @@ var LdapWizard = { }, postInitUserFilter: function() { - if(LdapWizard.userFilterObjectClassesHasRun - && LdapWizard.userFilterAvailableGroupsHasRun) { + if(LdapWizard.userFilterObjectClassesHasRun && + LdapWizard.userFilterAvailableGroupsHasRun) { LdapWizard.userFilter.compose(); LdapWizard.countUsers(); } -- cgit v1.2.3 From a27db9e4cadb9b5ee26f7b17d3a5997b07639489 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 2 Apr 2014 12:04:51 +0200 Subject: first steps to remove the shared folder: - mount shares to the root folder instead of "Shared/" - navigate in shared folder and sub-folders - show previews - show correct file permissions - download/edit files --- apps/files_sharing/lib/cache.php | 46 ++++++++++---------- apps/files_sharing/lib/share/file.php | 73 ++++++++++++++++++-------------- apps/files_sharing/lib/sharedstorage.php | 60 ++++++++++++++++++-------- 3 files changed, 106 insertions(+), 73 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index eeb62c3cce2..c509ec24576 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -2,8 +2,9 @@ /** * ownCloud * - * @author Michael Gapczynski - * @copyright 2012 Michael Gapczynski mtgap@owncloud.com + * @author Bjoern Schiessle, Michael Gapczynski + * @copyright 2012 Michael Gapczynski + * 2014 Bjoern Schiessle * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -46,7 +47,10 @@ class Shared_Cache extends Cache { * @return \OC\Files\Cache\Cache */ private function getSourceCache($target) { - $source = \OC_Share_Backend_File::getSource($target); + if ($target === false) { + $target = ''; + } + $source = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getShareType()); if (isset($source['path']) && isset($source['fileOwner'])) { \OC\Files\Filesystem::initMountPoints($source['fileOwner']); $mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']); @@ -127,28 +131,24 @@ class Shared_Cache extends Cache { * @return array */ public function getFolderContents($folder) { - if ($folder == '') { - $files = \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_GET_FOLDER_CONTENTS); - foreach ($files as &$file) { - $file['mimetype'] = $this->getMimetype($file['mimetype']); - $file['mimepart'] = $this->getMimetype($file['mimepart']); - $file['usersPath'] = 'files/Shared/' . ltrim($file['path'], '/'); - } - return $files; - } else { - $cache = $this->getSourceCache($folder); - if ($cache) { - $parent = $this->storage->getFile($folder); - $sourceFolderContent = $cache->getFolderContents($this->files[$folder]); - foreach ($sourceFolderContent as $key => $c) { - $sourceFolderContent[$key]['usersPath'] = 'files/Shared/' . $folder . '/' . $c['name']; - $sourceFolderContent[$key]['uid_owner'] = $parent['uid_owner']; - $sourceFolderContent[$key]['displayname_owner'] = $parent['uid_owner']; - } - return $sourceFolderContent; + if ($folder === false) { + $folder = ''; + } + + $cache = $this->getSourceCache($folder); + if ($cache) { + $parent = $this->storage->getFile($folder); + $sourceFolderContent = $cache->getFolderContents($this->files[$folder]); + foreach ($sourceFolderContent as $key => $c) { + $sourceFolderContent[$key]['usersPath'] = 'files/' . $folder . '/' . $c['name']; + $sourceFolderContent[$key]['uid_owner'] = $parent['uid_owner']; + $sourceFolderContent[$key]['displayname_owner'] = $parent['uid_owner']; } + + return $sourceFolderContent; } + return false; } @@ -214,7 +214,7 @@ class Shared_Cache extends Cache { */ public function move($source, $target) { if ($cache = $this->getSourceCache($source)) { - $file = \OC_Share_Backend_File::getSource($target); + $file = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getShareType()); if ($file && isset($file['path'])) { $cache->move($this->files[$source], $file['path']); } diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index 5e00050fe1e..b5196ab6fac 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -2,8 +2,9 @@ /** * ownCloud * -* @author Michael Gapczynski -* @copyright 2012 Michael Gapczynski mtgap@owncloud.com +* @author Bjoern Schiessle, Michael Gapczynski +* @copyright 2012 Michael Gapczynski + * 2014 Bjoern Schiessle * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -146,42 +147,50 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { return array(); } - public static function getSource($target) { - if ($target == '') { - return false; + /** + * @brief resolve reshares to return the correct source item + * @param array $source + * @return array source item + */ + protected static function resolveReshares($source) { + if (isset($source['parent'])) { + $parent = $source['parent']; + while (isset($parent)) { + $query = \OC_DB::prepare('SELECT `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `id` = ?', 1); + $item = $query->execute(array($parent))->fetchRow(); + if (isset($item['parent'])) { + $parent = $item['parent']; + } else { + $fileOwner = $item['uid_owner']; + break; + } + } + } else { + $fileOwner = $source['uid_owner']; } - $target = '/'.$target; - $target = rtrim($target, '/'); - $pos = strpos($target, '/', 1); - // Get shared folder name - if ($pos !== false) { - $folder = substr($target, 0, $pos); - $source = \OCP\Share::getItemSharedWith('folder', $folder, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE); - if ($source) { - $source['path'] = $source['path'].substr($target, strlen($folder)); + if (isset($fileOwner)) { + $source['fileOwner'] = $fileOwner; + } else { + \OCP\Util::writeLog('files_sharing', "No owner found for reshare", \OCP\Util::ERROR); + } + + return $source; + } + + public static function getSource($target, $mountPoint, $itemType) { + + if ($itemType === 'folder') { + $source = \OCP\Share::getItemSharedWith('folder', $mountPoint, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE); + if ($source && $target !== '') { + $source['path'] = $source['path'].'/'.$target; } } else { - $source = \OCP\Share::getItemSharedWith('file', $target, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE); + $source = \OCP\Share::getItemSharedWith('file', $mountPoint, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE); } if ($source) { - if (isset($source['parent'])) { - $parent = $source['parent']; - while (isset($parent)) { - $query = \OC_DB::prepare('SELECT `parent`, `uid_owner` FROM `*PREFIX*share` WHERE `id` = ?', 1); - $item = $query->execute(array($parent))->fetchRow(); - if (isset($item['parent'])) { - $parent = $item['parent']; - } else { - $fileOwner = $item['uid_owner']; - break; - } - } - } else { - $fileOwner = $source['uid_owner']; - } - $source['fileOwner'] = $fileOwner; - return $source; + return self::resolveReshares($source); } + \OCP\Util::writeLog('files_sharing', 'File source not found for: '.$target, \OCP\Util::DEBUG); return false; } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index b922654e5ec..25a05a0d1f2 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -2,8 +2,9 @@ /** * ownCloud * - * @author Michael Gapczynski - * @copyright 2011 Michael Gapczynski mtgap@owncloud.com + * @author Bjoern Schiessle, Michael Gapczynski + * @copyright 2011 Michael Gapczynski + * 2014 Bjoern Schiessle * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -27,15 +28,17 @@ namespace OC\Files\Storage; */ class Shared extends \OC\Files\Storage\Common { - private $sharedFolder; + private $mountPoint; // mount point relative to data/user/files + private $type; // can be "file" or "folder" private $files = array(); public function __construct($arguments) { - $this->sharedFolder = $arguments['sharedFolder']; + $this->mountPoint = $arguments['shareTarget']; + $this->type = $arguments['shareType']; } public function getId() { - return 'shared::' . $this->sharedFolder; + return 'shared::' . $this->mountPoint; } /** @@ -48,14 +51,14 @@ class Shared extends \OC\Files\Storage\Common { if (!isset($this->files[$target])) { // Check for partial files if (pathinfo($target, PATHINFO_EXTENSION) === 'part') { - $source = \OC_Share_Backend_File::getSource(substr($target, 0, -5)); + $source = \OC_Share_Backend_File::getSource(substr($target, 0, -5), $this->getMountPoint(), $this->getShareType()); if ($source) { $source['path'] .= '.part'; // All partial files have delete permission $source['permissions'] |= \OCP\PERMISSION_DELETE; } } else { - $source = \OC_Share_Backend_File::getSource($target); + $source = \OC_Share_Backend_File::getSource($target, $this->getMountPoint(), $this->getShareType()); } $this->files[$target] = $source; } @@ -119,8 +122,8 @@ class Shared extends \OC\Files\Storage\Common { public function opendir($path) { if ($path == '' || $path == '/') { $files = \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_Folder::FORMAT_OPENDIR); - \OC\Files\Stream\Dir::register('shared', $files); - return opendir('fakedir://shared'); + \OC\Files\Stream\Dir::register($this->mountPoint, $files); + return opendir('fakedir://' . $this->mountPoint); } else if ($source = $this->getSourcePath($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); return $storage->opendir($internalPath); @@ -180,7 +183,7 @@ class Shared extends \OC\Files\Storage\Common { public function isCreatable($path) { if ($path == '') { - return false; + return ($this->getPermissions($this->getMountPoint()) & \OCP\PERMISSION_CREATE); } return ($this->getPermissions($path) & \OCP\PERMISSION_CREATE); } @@ -246,7 +249,7 @@ class Shared extends \OC\Files\Storage\Common { $source = $this->getSourcePath($path); if ($source) { $info = array( - 'target' => $this->sharedFolder . $path, + 'target' => $this->mountPoint . $path, 'source' => $source, ); \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_get_contents', $info); @@ -264,7 +267,7 @@ class Shared extends \OC\Files\Storage\Common { return false; } $info = array( - 'target' => $this->sharedFolder . $path, + 'target' => $this->mountPoint . $path, 'source' => $source, ); \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info); @@ -343,7 +346,7 @@ class Shared extends \OC\Files\Storage\Common { } } $info = array( - 'target' => $this->sharedFolder . $path, + 'target' => $this->mountPoint . $path, 'source' => $source, 'mode' => $mode, ); @@ -393,16 +396,37 @@ class Shared extends \OC\Files\Storage\Common { } public static function setup($options) { + $shares = \OCP\Share::getItemsSharedWith('file'); if (!\OCP\User::isLoggedIn() || \OCP\User::getUser() != $options['user'] - || \OCP\Share::getItemsSharedWith('file') + || $shares ) { - $user_dir = $options['user_dir']; - \OC\Files\Filesystem::mount('\OC\Files\Storage\Shared', - array('sharedFolder' => '/Shared'), - $user_dir . '/Shared/'); + foreach ($shares as $share) { + \OC\Files\Filesystem::mount('\OC\Files\Storage\Shared', + array( + 'shareTarget' => $share['file_target'], + 'shareType' => $share['item_type'], + ), + $options['user_dir'] . '/' . $share['file_target']); + } } } + /** + * @brief return mount point of share, relative to data/user/files + * @return string + */ + public function getMountPoint() { + return ltrim($this->mountPoint, '/'); + } + + /** + * @brief return share type, can be "file" or "folder" + * @return string + */ + public function getShareType() { + return $this->type; + } + public function hasUpdated($path, $time) { if ($path == '') { return false; -- cgit v1.2.3 From c377893f0e81dbefe8612fecd90434e47573be29 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 4 Apr 2014 16:54:02 +0200 Subject: make sure that we have the right permissions for the mount points --- apps/files_sharing/lib/permissions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/permissions.php b/apps/files_sharing/lib/permissions.php index 31b7ac361ae..c3ad63e2fd2 100644 --- a/apps/files_sharing/lib/permissions.php +++ b/apps/files_sharing/lib/permissions.php @@ -31,7 +31,9 @@ class Shared_Permissions extends Permissions { */ public function get($fileId, $user) { if ($fileId == -1) { - return \OCP\PERMISSION_READ; + // if we ask for the mount point return -1 so that we can get the correct + // permissions by the path, with the root fileId we have no idea which share is meant + return -1; } $source = \OCP\Share::getItemSharedWithBySource('file', $fileId, \OC_Share_Backend_File::FORMAT_SHARED_STORAGE, null, true); -- cgit v1.2.3 From b02b6d3c236bb015e41447c686acf7167ad037e9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 4 Apr 2014 17:45:53 +0200 Subject: no exception for the root of the mount point (formerly Shared/), just get the file cache information from the cache --- apps/files_sharing/lib/cache.php | 11 +---------- apps/files_sharing/lib/share/file.php | 16 ---------------- 2 files changed, 1 insertion(+), 26 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index c509ec24576..becd436f798 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -84,16 +84,7 @@ class Shared_Cache extends Cache { * @return array */ public function get($file) { - if ($file == '') { - $data = \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_File::FORMAT_FILE_APP_ROOT); - $etag = \OCP\Config::getUserValue(\OCP\User::getUser(), 'files_sharing', 'etag'); - if (!isset($etag)) { - $etag = $this->storage->getETag(''); - \OCP\Config::setUserValue(\OCP\User::getUser(), 'files_sharing', 'etag', $etag); - } - $data['etag'] = $etag; - return $data; - } else if (is_string($file)) { + if (is_string($file)) { if ($cache = $this->getSourceCache($file)) { return $cache->get($this->files[$file]); } diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index b5196ab6fac..f9f3211bd82 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -109,22 +109,6 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { $files[] = $file; } return $files; - } else if ($format == self::FORMAT_FILE_APP_ROOT) { - $mtime = 0; - $size = 0; - foreach ($items as $item) { - if ($item['mtime'] > $mtime) { - $mtime = $item['mtime']; - } - $size += (int)$item['size']; - } - return array( - 'fileid' => -1, - 'name' => 'Shared', - 'mtime' => $mtime, - 'mimetype' => 'httpd/unix-directory', - 'size' => $size - ); } else if ($format == self::FORMAT_OPENDIR) { $files = array(); foreach ($items as $item) { -- cgit v1.2.3 From a02fb3722bae6655ffdd5b0e6c522331612c255b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 4 Apr 2014 18:32:49 +0200 Subject: user should be able to rename/delete shared files if the owner allowed it --- apps/files_sharing/lib/cache.php | 9 +++ apps/files_sharing/lib/sharedstorage.php | 102 ++++++++++++++++++++++++++++++- lib/private/files/view.php | 29 ++++++--- 3 files changed, 129 insertions(+), 11 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index becd436f798..4017b7ad64a 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -89,6 +89,12 @@ class Shared_Cache extends Cache { return $cache->get($this->files[$file]); } } else { + // if we are at the root of the mount point we want to return the + // cache information for the source item + if (!is_int($file) || $file === 0) { + $file = $this->storage->getSourceId(); + $mountPoint = $this->storage->getMountPoint(); + } $query = \OC_DB::prepare( 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`,' . ' `size`, `mtime`, `encrypted`, `unencrypted_size`' @@ -110,6 +116,9 @@ class Shared_Cache extends Cache { } else { $data['size'] = (int)$data['size']; } + if (isset($mountPoint)) { + $data['path'] = 'files/' . $mountPoint; + } return $data; } return false; diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 25a05a0d1f2..d09a4a22564 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -30,17 +30,33 @@ class Shared extends \OC\Files\Storage\Common { private $mountPoint; // mount point relative to data/user/files private $type; // can be "file" or "folder" + private $shareId; // share Id to identify the share in the database + private $fileSource; // file cache ID of the shared item private $files = array(); public function __construct($arguments) { $this->mountPoint = $arguments['shareTarget']; $this->type = $arguments['shareType']; + $this->shareId = $arguments['shareId']; + $this->fileSource = $arguments['fileSource']; } + /** + * @breif get id of the mount point + * @return string + */ public function getId() { return 'shared::' . $this->mountPoint; } + /** + * @breif get file cache of the shared item source + * @return string + */ + public function getSourceId() { + return $this->fileSource; + } + /** * @brief Get the source file path, permissions, and owner for a shared file * @param string Shared target file path @@ -289,11 +305,89 @@ class Shared extends \OC\Files\Storage\Common { return false; } + /** + * @brief Format a path to be relative to the /user/files/ directory + * @param string $path the absolute path + * @return string e.g. turns '/admin/files/test.txt' into '/test.txt' + */ + private static function stripUserFilesPath($path) { + $trimmed = ltrim($path, '/'); + $split = explode('/', $trimmed); + + // it is not a file relative to data/user/files + if (count($split) < 3 || $split[1] !== 'files') { + \OCP\Util::writeLog('file sharing', + 'Can not strip userid and "files/" from path: ' . $path, + \OCP\Util::DEBUG); + return false; + } + + // skip 'user' and 'files' + $sliced = array_slice($split, 2); + $relPath = implode('/', $sliced); + + return '/' . $relPath; + } + + /** + * @brief rename a shared foder/file + * @param string $sourcePath + * @param string $targetPath + * @return bool + */ + private function renameMountPoint($sourcePath, $targetPath) { + + // it shoulbn't be possible to move a Shared storage into another one + list($targetStorage, ) = \OC\Files\Filesystem::resolvePath($targetPath); + if ($targetStorage instanceof \OC\Files\Storage\Shared) { + \OCP\Util::writeLog('file sharing', + 'It is not allowed to move one mount point into another one', + \OCP\Util::DEBUG); + return false; + } + + $relTargetPath = $this->stripUserFilesPath($targetPath); + + // rename mount point + $query = \OC_DB::prepare( + 'Update `*PREFIX*share` + SET `file_target` = ? + WHERE `id` = ?' + ); + + $result = $query->execute(array($relTargetPath, $this->shareId)); + + if ($result) { + // update the mount manager with the new paths + $mountManager = \OC\Files\Filesystem::getMountManager(); + $mount = $mountManager->find($sourcePath); + $mount->setMountPoint($targetPath . '/'); + $mountManager->addMount($mount); + $mountManager->removeMount($sourcePath . '/'); + + } else { + \OCP\Util::writeLog('file sharing', + 'Could not rename mount point for shared folder "' . $sourcePath . '" to "' . $targetPath . '"', + \OCP\Util::ERROR); + } + + return $result; + } + + public function rename($path1, $path2) { + + $sourceMountPoint = \OC\Files\Filesystem::getMountPoint($path1); + + // if we renamed the mount point we need to adjust the file_target in the + // database + if (strlen($sourceMountPoint) >= strlen($path1)) { + return $this->renameMountPoint($path1, $path2); + } + // Renaming/moving is only allowed within shared folders - $pos1 = strpos($path1, '/', 1); - $pos2 = strpos($path2, '/', 1); - if ($pos1 !== false && $pos2 !== false && ($oldSource = $this->getSourcePath($path1))) { + $oldSource = $this->getSourcePath($path1); + if ($oldSource) { $newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2); // Within the same folder, we only need UPDATE permissions if (dirname($path1) == dirname($path2) and $this->isUpdatable($path1)) { @@ -405,6 +499,8 @@ class Shared extends \OC\Files\Storage\Common { array( 'shareTarget' => $share['file_target'], 'shareType' => $share['item_type'], + 'shareId' => $share['id'], + 'fileSource' => $share['file_source'], ), $options['user_dir'] . '/' . $share['file_target']); } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 519ed250b1f..6d630f978ba 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -404,11 +404,21 @@ class View { if ($run) { $mp1 = $this->getMountPoint($path1 . $postFix1); $mp2 = $this->getMountPoint($path2 . $postFix2); + list($storage1, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); + list(, $internalPath2) = Filesystem::resolvePath($absolutePath2 . $postFix2); + // if source and target are on the same storage we can call the rename operation from the + // storage. If it is a "Shared" file/folder we call always the rename operation of the + // shared storage to handle mount point renaming, etc correctly if ($mp1 == $mp2) { - list($storage, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); - list(, $internalPath2) = Filesystem::resolvePath($absolutePath2 . $postFix2); - if ($storage) { - $result = $storage->rename($internalPath1, $internalPath2); + if ($storage1) { + $result = $storage1->rename($internalPath1, $internalPath2); + \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); + } else { + $result = false; + } + } elseif ($storage1 instanceof \OC\Files\Storage\Shared) { + if ($storage1) { + $result = $storage1->rename($absolutePath1, $absolutePath2); \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); } else { $result = false; @@ -417,7 +427,6 @@ class View { if ($this->is_dir($path1)) { $result = $this->copy($path1, $path2); if ($result === true) { - list($storage1, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); $result = $storage1->unlink($internalPath1); } } else { @@ -431,7 +440,6 @@ class View { fclose($target); if ($result !== false) { - list($storage1, $internalPath1) = Filesystem::resolvePath($absolutePath1 . $postFix1); $storage1->unlink($internalPath1); } } @@ -972,8 +980,13 @@ class View { $permissions = $subStorage->getPermissions($rootEntry['path']); $subPermissionsCache->set($rootEntry['fileid'], $user, $permissions); } - // do not allow renaming/deleting the mount point - $rootEntry['permissions'] = $permissions & (\OCP\PERMISSION_ALL - (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE)); + // do not allow renaming/deleting the mount point if they are not shared files/folders + // for shared files/folders we use the permissions given by the owner + if ($subStorage instanceof \OC\Files\Storage\Shared) { + $rootEntry['permissions'] = $permissions; + } else { + $rootEntry['permissions'] = $permissions & (\OCP\PERMISSION_ALL - (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_DELETE)); + } //remove any existing entry with the same name foreach ($files as $i => $file) { -- cgit v1.2.3 From 6d87dacad4e7b0d5ef92b92d892a457bdcbd207e Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Apr 2014 11:32:39 +0200 Subject: fix getMimeType call, we always need to check the source path --- apps/files_sharing/lib/sharedstorage.php | 3 --- 1 file changed, 3 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index d09a4a22564..3fa2540b604 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -452,9 +452,6 @@ class Shared extends \OC\Files\Storage\Common { } public function getMimeType($path) { - if ($path == '' || $path == '/') { - return 'httpd/unix-directory'; - } if ($source = $this->getSourcePath($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); return $storage->getMimeType($internalPath); -- cgit v1.2.3 From 6b19482f3e1d97aab63c6c870c53a27d5e5a8524 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Apr 2014 12:29:47 +0200 Subject: generate unique target name --- apps/files_sharing/lib/share/file.php | 44 +++++++++++++++++++++++------------ 1 file changed, 29 insertions(+), 15 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index f9f3211bd82..c628b11589d 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -28,6 +28,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { const FORMAT_OPENDIR = 3; const FORMAT_GET_ALL = 4; const FORMAT_PERMISSIONS = 5; + const FORMAT_TARGET_NAMES = 6; private $path; @@ -50,24 +51,31 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { return false; } + /** + * @brief create unique target + * @param string $filePath + * @param string $shareWith + * @param string $exclude + * @return string + */ public function generateTarget($filePath, $shareWith, $exclude = null) { $target = '/'.basename($filePath); - if (isset($exclude)) { - if ($pos = strrpos($target, '.')) { - $name = substr($target, 0, $pos); - $ext = substr($target, $pos); - } else { - $name = $target; - $ext = ''; - } - $i = 2; - $append = ''; - while (in_array($name.$append.$ext, $exclude)) { - $append = ' ('.$i.')'; - $i++; - } - $target = $name.$append.$ext; + \OC\Files\Filesystem::initMountPoints($shareWith); + $view = new \OC\Files\View('/' . $shareWith . '/files'); + $excludeList = \OCP\Share::getItemsSharedWithUser('file', $shareWith, self::FORMAT_TARGET_NAMES); + if (is_array($exclude)) { + $excludeList = array_merge($excludeList, $exclude); } + + $pathinfo = pathinfo($target); + $ext = (isset($pathinfo['extension'])) ? '.'.$pathinfo['extension'] : ''; + $name = $pathinfo['filename']; + $i = 2; + while ($view->file_exists($target) || in_array($target, $excludeList)) { + $target = '/' . $name . ' ('.$i.')' . $ext; + $i++; + } + return $target; } @@ -127,6 +135,12 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { $filePermissions[$item['file_source']] = $item['permissions']; } return $filePermissions; + } else if ($format === self::FORMAT_TARGET_NAMES) { + $targets = array(); + foreach ($items as $item) { + $targets[] = $item['file_target']; + } + return $targets; } return array(); } -- cgit v1.2.3 From 496743523729b69e311c170a810182f95568fb7d Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Apr 2014 16:37:34 +0200 Subject: show "shared by ..." for share mount point --- apps/files_sharing/lib/cache.php | 4 +++- apps/files_sharing/lib/sharedstorage.php | 11 +++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 4017b7ad64a..250c1e872e3 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -86,7 +86,9 @@ class Shared_Cache extends Cache { public function get($file) { if (is_string($file)) { if ($cache = $this->getSourceCache($file)) { - return $cache->get($this->files[$file]); + $data = $cache->get($this->files[$file]); + $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); + return $data; } } else { // if we are at the root of the mount point we want to return the diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 3fa2540b604..f38f29635a2 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -32,6 +32,7 @@ class Shared extends \OC\Files\Storage\Common { private $type; // can be "file" or "folder" private $shareId; // share Id to identify the share in the database private $fileSource; // file cache ID of the shared item + private $sharedFrom; // the user who shared the file private $files = array(); public function __construct($arguments) { @@ -39,6 +40,7 @@ class Shared extends \OC\Files\Storage\Common { $this->type = $arguments['shareType']; $this->shareId = $arguments['shareId']; $this->fileSource = $arguments['fileSource']; + $this->sharedFrom = $arguments['sharedFrom']; } /** @@ -498,6 +500,7 @@ class Shared extends \OC\Files\Storage\Common { 'shareType' => $share['item_type'], 'shareId' => $share['id'], 'fileSource' => $share['file_source'], + 'sharedFrom' => $share['uid_owner'], ), $options['user_dir'] . '/' . $share['file_target']); } @@ -512,6 +515,14 @@ class Shared extends \OC\Files\Storage\Common { return ltrim($this->mountPoint, '/'); } + /** + * @brief get the user who shared the file + * @return string + */ + public function getSharedFrom() { + return $this->sharedFrom; + } + /** * @brief return share type, can be "file" or "folder" * @return string -- cgit v1.2.3 From 83d68107253834aa5322198295c827d94e951e90 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Apr 2014 16:56:10 +0200 Subject: don't overwrite shared folder icon --- apps/files/lib/helper.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index 2e3741cbdca..88a5ffcfb61 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -37,8 +37,7 @@ class Helper $sid = explode(':', $sid); if ($sid[0] === 'shared') { $icon = \OC_Helper::mimetypeIcon('dir-shared'); - } - if ($sid[0] !== 'local' and $sid[0] !== 'home') { + } elseif ($sid[0] !== 'local' and $sid[0] !== 'home') { $icon = \OC_Helper::mimetypeIcon('dir-external'); } } -- cgit v1.2.3 From 27c5a978f91e7aa447a2acca040fd173baba53b9 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Apr 2014 17:17:48 +0200 Subject: we no longer need to handle the Shared folder different from any other folder --- apps/files/js/file-upload.js | 4 +- apps/files/js/fileactions.js | 8 +-- apps/files/js/filelist.js | 2 +- apps/files/js/files.js | 6 +-- apps/files/lib/app.php | 11 +--- apps/files/tests/ajax_rename.php | 82 ------------------------------ apps/files/tests/js/filesSpec.js | 35 ------------- lib/private/connector/sabre/directory.php | 12 ----- lib/private/connector/sabre/file.php | 11 ---- lib/private/connector/sabre/objecttree.php | 3 -- 10 files changed, 8 insertions(+), 166 deletions(-) (limited to 'apps') diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 3879aa65888..03ebdccb32d 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -235,7 +235,7 @@ OC.Upload = { var file = data.files[0]; try { // FIXME: not so elegant... need to refactor that method to return a value - Files.isFileNameValid(file.name, FileList.getCurrentDirectory()); + Files.isFileNameValid(file.name); } catch (errorMessage) { data.textStatus = 'invalidcharacters'; @@ -555,8 +555,6 @@ OC.Upload = { throw t('files', 'URL cannot be empty'); } else if (type !== 'web' && !Files.isFileNameValid(filename)) { // Files.isFileNameValid(filename) throws an exception itself - } else if (FileList.getCurrentDirectory() === '/' && filename.toLowerCase() === 'shared') { - throw t('files', 'In the home folder \'Shared\' is a reserved filename'); } else if (FileList.inList(filename)) { throw t('files', '{new_name} already exists', {new_name: filename}); } else { diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index 631aebea954..ecdfa72a477 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -118,10 +118,6 @@ var FileActions = { }; var addAction = function (name, action, displayName) { - // NOTE: Temporary fix to prevent rename action in root of Shared directory - if (name === 'Rename' && $('#dir').val() === '/Shared') { - return true; - } if ((name === 'Download' || action !== defaultAction) && name !== 'Delete') { @@ -160,7 +156,7 @@ var FileActions = { addAction(name, ah, displayName); } }); - if(actions.Share && !($('#dir').val() === '/' && file === 'Shared')){ + if(actions.Share){ displayName = t('files', 'Share'); addAction('Share', actions.Share, displayName); } @@ -223,7 +219,7 @@ $(document).ready(function () { $('#fileList tr').each(function () { FileActions.display($(this).children('td.filename')); }); - + $('#fileList').trigger(jQuery.Event("fileActionsReady")); }); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 9c749bb8f34..343da217416 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -580,7 +580,7 @@ window.FileList = { var filename = input.val(); if (filename !== oldname) { // Files.isFileNameValid(filename) throws an exception itself - Files.isFileNameValid(filename, FileList.getCurrentDirectory()); + Files.isFileNameValid(filename); if (FileList.inList(filename)) { throw t('files', '{new_name} already exists', {new_name: filename}); } diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 9f38263bef3..5e669a796a9 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -87,11 +87,9 @@ var Files = { * Throws a string exception with an error message if * the file name is not valid */ - isFileNameValid: function (name, root) { + isFileNameValid: function (name) { var trimmedName = name.trim(); - if (trimmedName === '.' - || trimmedName === '..' - || (root === '/' && trimmedName.toLowerCase() === 'shared')) + if (trimmedName === '.' || trimmedName === '..') { throw t('files', '"{name}" is an invalid file name.', {name: name}); } else if (trimmedName.length === 0) { diff --git a/apps/files/lib/app.php b/apps/files/lib/app.php index adfca669577..ed4aa32c662 100644 --- a/apps/files/lib/app.php +++ b/apps/files/lib/app.php @@ -54,13 +54,8 @@ class App { 'data' => NULL ); - // rename to "/Shared" is denied - if( $dir === '/' and $newname === 'Shared' ) { - $result['data'] = array( - 'message' => $this->l10n->t("Invalid folder name. Usage of 'Shared' is reserved.") - ); // rename to non-existing folder is denied - } else if (!$this->view->file_exists($dir)) { + if (!$this->view->file_exists($dir)) { $result['data'] = array('message' => (string)$this->l10n->t( 'The target folder has been moved or deleted.', array($dir)), @@ -68,7 +63,7 @@ class App { ); // rename to existing file is denied } else if ($this->view->file_exists($dir . '/' . $newname)) { - + $result['data'] = array( 'message' => $this->l10n->t( "The name %s is already used in the folder %s. Please choose a different name.", @@ -77,8 +72,6 @@ class App { } else if ( // rename to "." is denied $newname !== '.' and - // rename of "/Shared" is denied - !($dir === '/' and $oldname === 'Shared') and // THEN try to rename $this->view->rename($dir . '/' . $oldname, $dir . '/' . $newname) ) { diff --git a/apps/files/tests/ajax_rename.php b/apps/files/tests/ajax_rename.php index cb62d22a7e2..74ca1e4495d 100644 --- a/apps/files/tests/ajax_rename.php +++ b/apps/files/tests/ajax_rename.php @@ -55,88 +55,6 @@ class Test_OC_Files_App_Rename extends \PHPUnit_Framework_TestCase { \OC\Files\Filesystem::tearDown(); } - /** - * @brief test rename of file/folder named "Shared" - */ - function testRenameSharedFolder() { - $dir = '/'; - $oldname = 'Shared'; - $newname = 'new_name'; - - $this->viewMock->expects($this->at(0)) - ->method('file_exists') - ->with('/') - ->will($this->returnValue(true)); - - $result = $this->files->rename($dir, $oldname, $newname); - $expected = array( - 'success' => false, - 'data' => array('message' => '%s could not be renamed') - ); - - $this->assertEquals($expected, $result); - } - - /** - * @brief test rename of file/folder named "Shared" - */ - function testRenameSharedFolderInSubdirectory() { - $dir = '/test'; - $oldname = 'Shared'; - $newname = 'new_name'; - - $this->viewMock->expects($this->at(0)) - ->method('file_exists') - ->with('/test') - ->will($this->returnValue(true)); - - $this->viewMock->expects($this->any()) - ->method('getFileInfo') - ->will($this->returnValue(new \OC\Files\FileInfo( - '/test', - null, - '/test', - array( - 'fileid' => 123, - 'type' => 'dir', - 'mimetype' => 'httpd/unix-directory', - 'mtime' => 0, - 'permissions' => 31, - 'size' => 18, - 'etag' => 'abcdef', - 'directory' => '/', - 'name' => 'new_name', - )))); - - $result = $this->files->rename($dir, $oldname, $newname); - - $this->assertTrue($result['success']); - $this->assertEquals(123, $result['data']['id']); - $this->assertEquals('new_name', $result['data']['name']); - $this->assertEquals(18, $result['data']['size']); - $this->assertEquals('httpd/unix-directory', $result['data']['mimetype']); - $icon = \OC_Helper::mimetypeIcon('dir'); - $icon = substr($icon, 0, -3) . 'svg'; - $this->assertEquals($icon, $result['data']['icon']); - } - - /** - * @brief test rename of file/folder to "Shared" - */ - function testRenameFolderToShared() { - $dir = '/'; - $oldname = 'oldname'; - $newname = 'Shared'; - - $result = $this->files->rename($dir, $oldname, $newname); - $expected = array( - 'success' => false, - 'data' => array('message' => "Invalid folder name. Usage of 'Shared' is reserved.") - ); - - $this->assertEquals($expected, $result); - } - /** * @brief test rename of file/folder */ diff --git a/apps/files/tests/js/filesSpec.js b/apps/files/tests/js/filesSpec.js index 95bf87e03ec..018c8ef0f3c 100644 --- a/apps/files/tests/js/filesSpec.js +++ b/apps/files/tests/js/filesSpec.js @@ -48,41 +48,6 @@ describe('Files tests', function() { expect(error).toEqual(false); } }); - it('Validates correct file names do not create Shared folder in root', function() { - // create shared file in subfolder - var error = false; - try { - expect(Files.isFileNameValid('shared', '/foo')).toEqual(true); - expect(Files.isFileNameValid('Shared', '/foo')).toEqual(true); - } - catch (e) { - error = e; - } - expect(error).toEqual(false); - - // create shared file in root - var threwException = false; - try { - Files.isFileNameValid('Shared', '/'); - console.error('Invalid file name not detected'); - } - catch (e) { - threwException = true; - } - expect(threwException).toEqual(true); - - // create shared file in root - var threwException = false; - try { - Files.isFileNameValid('shared', '/'); - console.error('Invalid file name not detected'); - } - catch (e) { - threwException = true; - } - expect(threwException).toEqual(true); - - }); it('Detects invalid file names', function() { var fileNames = [ '', diff --git a/lib/private/connector/sabre/directory.php b/lib/private/connector/sabre/directory.php index 70f45aa1e7f..5d386a772a7 100644 --- a/lib/private/connector/sabre/directory.php +++ b/lib/private/connector/sabre/directory.php @@ -50,10 +50,6 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createFile($name, $data = null) { - if (strtolower($name) === 'shared' && empty($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); - } - // for chunked upload also updating a existing file is a "createFile" // because we create all the chunks before reasamble them to the existing file. if (isset($_SERVER['HTTP_OC_CHUNKED'])) { @@ -86,10 +82,6 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function createDirectory($name) { - if (strtolower($name) === 'shared' && empty($this->path)) { - throw new \Sabre_DAV_Exception_Forbidden(); - } - if (!\OC\Files\Filesystem::isCreatable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } @@ -196,10 +188,6 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa */ public function delete() { - if ($this->path === 'Shared') { - throw new \Sabre_DAV_Exception_Forbidden(); - } - if (!\OC\Files\Filesystem::isDeletable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } diff --git a/lib/private/connector/sabre/file.php b/lib/private/connector/sabre/file.php index 750d646a8f5..433b4d805c9 100644 --- a/lib/private/connector/sabre/file.php +++ b/lib/private/connector/sabre/file.php @@ -71,13 +71,6 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D // mark file as partial while uploading (ignored by the scanner) $partpath = $this->path . '.ocTransferId' . rand() . '.part'; - // if file is located in /Shared we write the part file to the users - // root folder because we can't create new files in /shared - // we extend the name with a random number to avoid overwriting a existing file - if (dirname($partpath) === 'Shared') { - $partpath = pathinfo($partpath, PATHINFO_FILENAME) . rand() . '.part'; - } - try { $putOkay = $fs->file_put_contents($partpath, $data); if ($putOkay === false) { @@ -149,10 +142,6 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D public function delete() { $fs = $this->getFS(); - if ($this->path === 'Shared') { - throw new \Sabre_DAV_Exception_Forbidden(); - } - if (!$fs->isDeletable($this->path)) { throw new \Sabre_DAV_Exception_Forbidden(); } diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index accf020daa2..d2fa425b22c 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -94,9 +94,6 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { } if ($sourceDir !== $destinationDir) { // for a full move we need update privileges on sourcePath and sourceDir as well as destinationDir - if (ltrim($destinationDir, '/') === '' && strtolower($sourceNode->getName()) === 'shared') { - throw new \Sabre_DAV_Exception_Forbidden(); - } if (!$fs->isUpdatable($sourceDir)) { throw new \Sabre_DAV_Exception_Forbidden(); } -- cgit v1.2.3 From ed981294f11bd59733e0d121cbf737e16275b666 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 8 Apr 2014 19:57:07 +0200 Subject: fix share api tests --- apps/files_sharing/lib/api.php | 12 ------ apps/files_sharing/lib/cache.php | 21 ++++++---- apps/files_sharing/lib/share/file.php | 2 +- apps/files_sharing/lib/sharedstorage.php | 39 ++++-------------- apps/files_sharing/lib/watcher.php | 2 +- apps/files_sharing/tests/api.php | 70 +++++++------------------------- apps/files_sharing/tests/base.php | 12 +++--- apps/files_sharing/tests/cache.php | 60 ++++++++++++--------------- apps/files_sharing/tests/permissions.php | 15 ++++--- apps/files_sharing/tests/watcher.php | 33 +++++---------- lib/private/share/share.php | 6 +-- 11 files changed, 91 insertions(+), 181 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php index de3c1cd2630..438d3cc4ba3 100644 --- a/apps/files_sharing/lib/api.php +++ b/apps/files_sharing/lib/api.php @@ -184,7 +184,6 @@ class Api { $receivedFrom = \OCP\Share::getItemSharedWithBySource($itemType, $file['fileid']); reset($share); $key = key($share); - $share[$key]['path'] = self::correctPath($share[$key]['path'], $path); if ($receivedFrom) { $share[$key]['received_from'] = $receivedFrom['uid_owner']; $share[$key]['received_from_displayname'] = \OCP\User::getDisplayName($receivedFrom['uid_owner']); @@ -531,15 +530,4 @@ class Api { } - /** - * @brief make sure that the path has the correct root - * - * @param string $path path returned from the share API - * @param string $folder current root folder - * @return string the correct path - */ - protected static function correctPath($path, $folder) { - return \OC_Filesystem::normalizePath('/' . $folder . '/' . basename($path)); - } - } diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 250c1e872e3..e91c15cc62a 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -47,7 +47,7 @@ class Shared_Cache extends Cache { * @return \OC\Files\Cache\Cache */ private function getSourceCache($target) { - if ($target === false) { + if ($target === false || $target === $this->storage->getMountPoint()) { $target = ''; } $source = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getShareType()); @@ -86,8 +86,11 @@ class Shared_Cache extends Cache { public function get($file) { if (is_string($file)) { if ($cache = $this->getSourceCache($file)) { + $path = 'files/' . $this->storage->getMountPoint(); + $path .= ($file !== '') ? '/' . $file : ''; $data = $cache->get($this->files[$file]); $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); + $data['path'] = $path; return $data; } } else { @@ -99,7 +102,7 @@ class Shared_Cache extends Cache { } $query = \OC_DB::prepare( 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`,' - . ' `size`, `mtime`, `encrypted`, `unencrypted_size`' + . ' `size`, `mtime`, `encrypted`, `unencrypted_size`, `storage_mtime`' . ' FROM `*PREFIX*filecache` WHERE `fileid` = ?'); $result = $query->execute(array($file)); $data = $result->fetchRow(); @@ -138,12 +141,15 @@ class Shared_Cache extends Cache { $folder = ''; } + $dir = 'files/' . $this->storage->getMountPoint(); + $dir .= ($folder !== '') ? '/' . $folder : ''; + $cache = $this->getSourceCache($folder); if ($cache) { $parent = $this->storage->getFile($folder); $sourceFolderContent = $cache->getFolderContents($this->files[$folder]); foreach ($sourceFolderContent as $key => $c) { - $sourceFolderContent[$key]['usersPath'] = 'files/' . $folder . '/' . $c['name']; + $sourceFolderContent[$key]['path'] = $dir . '/' . $c['name']; $sourceFolderContent[$key]['uid_owner'] = $parent['uid_owner']; $sourceFolderContent[$key]['displayname_owner'] = $parent['uid_owner']; } @@ -178,7 +184,11 @@ class Shared_Cache extends Cache { * @return int */ public function getId($file) { - if ($cache = $this->getSourceCache($file)) { + if ($file === false) { + return $this->storage->getSourceId(); + } + $cache = $this->getSourceCache($file); + if ($cache) { return $cache->getId($this->files[$file]); } return -1; @@ -292,9 +302,6 @@ class Shared_Cache extends Cache { if ($file['mimetype'] === 'httpd/unix-directory') { $exploreDirs[] = ltrim($dir . '/' . $file['name'], '/'); } else if (($mimepart && $file['mimepart'] === $mimepart) || ($mimetype && $file['mimetype'] === $mimetype)) { - // usersPath not reliable - //$file['path'] = $file['usersPath']; - $file['path'] = ltrim($dir . '/' . $file['name'], '/'); $result[] = $file; } } diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index c628b11589d..e1d0b49706b 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -87,7 +87,7 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { 'path' => $items[key($items)]['path'], 'storage' => $items[key($items)]['storage'], 'permissions' => $items[key($items)]['permissions'], - 'uid_owner' => $items[key($items)]['uid_owner'] + 'uid_owner' => $items[key($items)]['uid_owner'], ); } else if ($format == self::FORMAT_GET_FOLDER_CONTENTS) { $files = array(); diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index f38f29635a2..565c3e7af8e 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -138,15 +138,9 @@ class Shared extends \OC\Files\Storage\Common { } public function opendir($path) { - if ($path == '' || $path == '/') { - $files = \OCP\Share::getItemsSharedWith('file', \OC_Share_Backend_Folder::FORMAT_OPENDIR); - \OC\Files\Stream\Dir::register($this->mountPoint, $files); - return opendir('fakedir://' . $this->mountPoint); - } else if ($source = $this->getSourcePath($path)) { - list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); - return $storage->opendir($internalPath); - } - return false; + $source = $this->getSourcePath($path); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); + return $storage->opendir($internalPath); } public function is_dir($path) { @@ -242,25 +236,9 @@ class Shared extends \OC\Files\Storage\Common { } public function filemtime($path) { - if ($path == '' || $path == '/') { - $mtime = 0; - $dh = $this->opendir($path); - if (is_resource($dh)) { - while (($filename = readdir($dh)) !== false) { - $tempmtime = $this->filemtime($filename); - if ($tempmtime > $mtime) { - $mtime = $tempmtime; - } - } - } - return $mtime; - } else { - $source = $this->getSourcePath($path); - if ($source) { - list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); - return $storage->filemtime($internalPath); - } - } + $source = $this->getSourcePath($path); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); + return $storage->filemtime($internalPath); } public function file_get_contents($path) { @@ -285,7 +263,7 @@ class Shared extends \OC\Files\Storage\Common { return false; } $info = array( - 'target' => $this->mountPoint . $path, + 'target' => $this->mountPoint . '/' . $path, 'source' => $source, ); \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info); @@ -532,9 +510,6 @@ class Shared extends \OC\Files\Storage\Common { } public function hasUpdated($path, $time) { - if ($path == '') { - return false; - } return $this->filemtime($path) > $time; } diff --git a/apps/files_sharing/lib/watcher.php b/apps/files_sharing/lib/watcher.php index 285b1a58c6e..11d3ce1cabd 100644 --- a/apps/files_sharing/lib/watcher.php +++ b/apps/files_sharing/lib/watcher.php @@ -32,7 +32,7 @@ class Shared_Watcher extends Watcher { * @param string $path */ public function checkUpdate($path) { - if ($path != '' && parent::checkUpdate($path) === true) { + if (parent::checkUpdate($path) === true) { // since checkUpdate() has already updated the size of the subdirs, // only apply the update to the owner's parent dirs diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index c7a848315ac..6354d1099bb 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -324,10 +324,10 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); $testValues=array( - array('query' => 'Shared/' . $this->folder, - 'expectedResult' => '/Shared' . $this->folder . $this->filename), - array('query' => 'Shared/' . $this->folder . $this->subfolder, - 'expectedResult' => '/Shared' . $this->folder . $this->subfolder . $this->filename), + array('query' => $this->folder, + 'expectedResult' => $this->folder . $this->filename), + array('query' => $this->folder . $this->subfolder, + 'expectedResult' => $this->folder . $this->subfolder . $this->filename), ); foreach ($testValues as $value) { @@ -382,7 +382,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // share was successful? $this->assertTrue(is_string($result)); - $_GET['path'] = '/Shared'; + $_GET['path'] = '/'; $_GET['subfiles'] = 'true'; $result = Share\Api::getAllShares(array()); @@ -395,7 +395,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // we should get exactly one result $this->assertEquals(1, count($data)); - $expectedPath = '/Shared' . $this->subfolder; + $expectedPath = $this->subfolder; $this->assertEquals($expectedPath, $data[0]['path']); // cleanup @@ -444,7 +444,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); - $_GET['path'] = '/Shared'; + $_GET['path'] = '/'; $_GET['subfiles'] = 'true'; $result = Share\Api::getAllShares(array()); @@ -457,7 +457,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // we should get exactly one result $this->assertEquals(1, count($data)); - $expectedPath = '/Shared' . $this->subsubfolder; + $expectedPath = $this->subsubfolder; $this->assertEquals($expectedPath, $data[0]['path']); @@ -512,8 +512,8 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); - // ask for shared/subfolder - $expectedPath1 = '/Shared' . $this->subfolder; + // ask for subfolder + $expectedPath1 = $this->subfolder; $_GET['path'] = $expectedPath1; $result1 = Share\Api::getAllShares(array()); @@ -524,8 +524,8 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $data1 = $result1->getData(); $share1 = reset($data1); - // ask for shared/folder/subfolder - $expectedPath2 = '/Shared' . $this->folder . $this->subfolder; + // ask for folder/subfolder + $expectedPath2 = $this->folder . $this->subfolder; $_GET['path'] = $expectedPath2; $result2 = Share\Api::getAllShares(array()); @@ -595,7 +595,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue(is_string($result)); - $_GET['path'] = '/Shared'; + $_GET['path'] = '/'; $_GET['subfiles'] = 'true'; $result = Share\Api::getAllShares(array()); @@ -608,7 +608,7 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { // we should get exactly one result $this->assertEquals(1, count($data)); - $expectedPath = '/Shared' . $this->filename; + $expectedPath = $this->filename; $this->assertEquals($expectedPath, $data[0]['path']); @@ -868,46 +868,4 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { } - function testCorrectPath() { - $path = "/foo/bar/test.txt"; - $folder = "/correct/path"; - $expectedResult = "/correct/path/test.txt"; - - $shareApiDummy = new TestShareApi(); - - $this->assertSame($expectedResult, $shareApiDummy->correctPathTest($path, $folder)); - } - - /** - * @expectedException \Exception - */ - public function testShareNonExisting() { - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); - - $id = PHP_INT_MAX - 1; - \OCP\Share::shareItem('file', $id, \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); - } - - /** - * @expectedException \Exception - */ - public function testShareNotOwner() { - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); - \OC\Files\Filesystem::file_put_contents('foo.txt', 'bar'); - $info = \OC\Files\Filesystem::getFileInfo('foo.txt'); - - \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); - - \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); - } - -} - -/** - * @brief dumnmy class to test protected methods - */ -class TestShareApi extends \OCA\Files\Share\Api { - public function correctPathTest($path, $folder) { - return self::correctPath($path, $folder); - } } diff --git a/apps/files_sharing/tests/base.php b/apps/files_sharing/tests/base.php index d44972d01f1..495dca072c7 100644 --- a/apps/files_sharing/tests/base.php +++ b/apps/files_sharing/tests/base.php @@ -102,22 +102,20 @@ abstract class Test_Files_Sharing_Base extends \PHPUnit_Framework_TestCase { * @param bool $password */ protected static function loginHelper($user, $create = false, $password = false) { - if ($create) { - \OC_User::createUser($user, $user); - } if ($password === false) { $password = $user; } + if ($create) { + \OC_User::createUser($user, $password); + } + \OC_Util::tearDownFS(); \OC_User::setUserId(''); \OC\Files\Filesystem::tearDown(); - \OC_Util::setupFS($user); \OC_User::setUserId($user); - - $params['uid'] = $user; - $params['password'] = $password; + \OC_Util::setupFS($user); } /** diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php index 47969833ab5..7a52f403d8e 100644 --- a/apps/files_sharing/tests/cache.php +++ b/apps/files_sharing/tests/cache.php @@ -68,7 +68,7 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { // retrieve the shared storage $secondView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2); - list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/Shared/shareddir'); + list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/shareddir'); $this->sharedCache = $this->sharedStorage->getCache(); } @@ -98,46 +98,46 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { function testSearchByMime() { $results = $this->sharedStorage->getCache()->searchByMime('text'); $check = array( - array( - 'name' => 'shared single file.txt', - 'path' => 'shared single file.txt' - ), array( 'name' => 'bar.txt', - 'path' => 'shareddir/bar.txt' + 'path' => 'files/shareddir/bar.txt' ), array( 'name' => 'another too.txt', - 'path' => 'shareddir/subdir/another too.txt' + 'path' => 'files/shareddir/subdir/another too.txt' ), array( 'name' => 'another.txt', - 'path' => 'shareddir/subdir/another.txt' + 'path' => 'files/shareddir/subdir/another.txt' ), ); $this->verifyFiles($check, $results); - $results2 = $this->sharedStorage->getCache()->searchByMime('text/plain'); - $this->verifyFiles($check, $results); } function testGetFolderContentsInRoot() { - $results = $this->user2View->getDirectoryContent('/Shared/'); + $results = $this->user2View->getDirectoryContent('/'); + // we should get the shared items "shareddir" and "shared single file.txt" + // additional root will always contain the example file "welcome.txt", + // so this will be part of the result $this->verifyFiles( array( + array( + 'name' => 'welcome.txt', + 'path' => 'files/welcome.txt', + 'mimetype' => 'text/plain', + ), array( 'name' => 'shareddir', - 'path' => '/shareddir', + 'path' => 'files/shareddir', 'mimetype' => 'httpd/unix-directory', - 'usersPath' => 'files/Shared/shareddir' ), array( 'name' => 'shared single file.txt', - 'path' => '/shared single file.txt', + 'path' => 'files/shared single file.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/shared single file.txt' ), ), $results @@ -145,27 +145,24 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { } function testGetFolderContentsInSubdir() { - $results = $this->user2View->getDirectoryContent('/Shared/shareddir'); + $results = $this->user2View->getDirectoryContent('/shareddir'); $this->verifyFiles( array( array( 'name' => 'bar.txt', - 'path' => 'files/container/shareddir/bar.txt', + 'path' => 'files/shareddir/bar.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/shareddir/bar.txt' ), array( 'name' => 'emptydir', - 'path' => 'files/container/shareddir/emptydir', + 'path' => 'files/shareddir/emptydir', 'mimetype' => 'httpd/unix-directory', - 'usersPath' => 'files/Shared/shareddir/emptydir' ), array( 'name' => 'subdir', - 'path' => 'files/container/shareddir/subdir', + 'path' => 'files/shareddir/subdir', 'mimetype' => 'httpd/unix-directory', - 'usersPath' => 'files/Shared/shareddir/subdir' ), ), $results @@ -182,27 +179,24 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { self::loginHelper(self::TEST_FILES_SHARING_API_USER3); $thirdView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER3 . '/files'); - $results = $thirdView->getDirectoryContent('/Shared/subdir'); + $results = $thirdView->getDirectoryContent('/subdir'); $this->verifyFiles( array( array( 'name' => 'another too.txt', - 'path' => 'files/container/shareddir/subdir/another too.txt', + 'path' => 'files/subdir/another too.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/subdir/another too.txt' ), array( 'name' => 'another.txt', - 'path' => 'files/container/shareddir/subdir/another.txt', + 'path' => 'files/subdir/another.txt', 'mimetype' => 'text/plain', - 'usersPath' => 'files/Shared/subdir/another.txt' ), array( 'name' => 'not a text file.xml', - 'path' => 'files/container/shareddir/subdir/not a text file.xml', + 'path' => 'files/subdir/not a text file.xml', 'mimetype' => 'application/xml', - 'usersPath' => 'files/Shared/subdir/not a text file.xml' ), ), $results @@ -254,8 +248,8 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { \OC_Util::tearDownFS(); self::loginHelper(self::TEST_FILES_SHARING_API_USER2); - $this->assertTrue(\OC\Files\Filesystem::file_exists('/Shared/test.txt')); - list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/Shared/test.txt'); + $this->assertTrue(\OC\Files\Filesystem::file_exists('/test.txt')); + list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/test.txt'); /** * @var \OC\Files\Storage\Shared $sharedStorage */ @@ -275,8 +269,8 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { \OC_Util::tearDownFS(); self::loginHelper(self::TEST_FILES_SHARING_API_USER2); - $this->assertTrue(\OC\Files\Filesystem::file_exists('/Shared/foo')); - list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/Shared/foo'); + $this->assertTrue(\OC\Files\Filesystem::file_exists('/foo')); + list($sharedStorage) = \OC\Files\Filesystem::resolvePath('/' . self::TEST_FILES_SHARING_API_USER2 . '/files/foo'); /** * @var \OC\Files\Storage\Shared $sharedStorage */ diff --git a/apps/files_sharing/tests/permissions.php b/apps/files_sharing/tests/permissions.php index e301d384a49..5ac251b0527 100644 --- a/apps/files_sharing/tests/permissions.php +++ b/apps/files_sharing/tests/permissions.php @@ -23,6 +23,9 @@ require_once __DIR__ . '/base.php'; class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { + private $sharedStorageRestrictedShare; + private $sharedCacheRestrictedShare; + function setUp() { parent::setUp(); @@ -55,8 +58,10 @@ class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { // retrieve the shared storage $this->secondView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2); - list($this->sharedStorage, $internalPath) = $this->secondView->resolvePath('files/Shared/shareddir'); + list($this->sharedStorage, $internalPath) = $this->secondView->resolvePath('files/shareddir'); + list($this->sharedStorageRestrictedShare, $internalPath) = $this->secondView->resolvePath('files/shareddirrestricted'); $this->sharedCache = $this->sharedStorage->getCache(); + $this->sharedCacheRestrictedShare = $this->sharedStorageRestrictedShare->getCache(); } function tearDown() { @@ -86,9 +91,9 @@ class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { $this->assertEquals(31, $sharedDirPerms); $sharedDirPerms = $this->sharedStorage->getPermissions('shareddir/textfile.txt'); $this->assertEquals(31, $sharedDirPerms); - $sharedDirRestrictedPerms = $this->sharedStorage->getPermissions('shareddirrestricted'); + $sharedDirRestrictedPerms = $this->sharedStorageRestrictedShare->getPermissions('shareddirrestricted'); $this->assertEquals(7, $sharedDirRestrictedPerms); - $sharedDirRestrictedPerms = $this->sharedStorage->getPermissions('shareddirrestricted/textfile.txt'); + $sharedDirRestrictedPerms = $this->sharedStorageRestrictedShare->getPermissions('shareddirrestricted/textfile.txt'); $this->assertEquals(7, $sharedDirRestrictedPerms); } @@ -96,12 +101,12 @@ class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base { * Test that the permissions of shared directory are returned correctly */ function testGetDirectoryPermissions() { - $contents = $this->secondView->getDirectoryContent('files/Shared/shareddir'); + $contents = $this->secondView->getDirectoryContent('files/shareddir'); $this->assertEquals('subdir', $contents[0]['name']); $this->assertEquals(31, $contents[0]['permissions']); $this->assertEquals('textfile.txt', $contents[1]['name']); $this->assertEquals(31, $contents[1]['permissions']); - $contents = $this->secondView->getDirectoryContent('files/Shared/shareddirrestricted'); + $contents = $this->secondView->getDirectoryContent('files/shareddirrestricted'); $this->assertEquals('subdir', $contents[0]['name']); $this->assertEquals(7, $contents[0]['permissions']); $this->assertEquals('textfile1.txt', $contents[1]['name']); diff --git a/apps/files_sharing/tests/watcher.php b/apps/files_sharing/tests/watcher.php index 5ab716e829f..bce93c80a6c 100644 --- a/apps/files_sharing/tests/watcher.php +++ b/apps/files_sharing/tests/watcher.php @@ -48,7 +48,7 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { // retrieve the shared storage $secondView = new \OC\Files\View('/' . self::TEST_FILES_SHARING_API_USER2); - list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/Shared/shareddir'); + list($this->sharedStorage, $internalPath) = $secondView->resolvePath('files/shareddir'); $this->sharedCache = $this->sharedStorage->getCache(); } @@ -77,12 +77,12 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $textData = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $dataLen = strlen($textData); - $this->sharedCache->put('shareddir/bar.txt', array('storage_mtime' => 10)); - $this->sharedStorage->file_put_contents('shareddir/bar.txt', $textData); - $this->sharedCache->put('shareddir', array('storage_mtime' => 10)); + $this->sharedCache->put('bar.txt', array('mtime' => 10, 'storage_mtime' => 10, 'size' => $dataLen, 'mimetype' => 'text/plain')); + $this->sharedStorage->file_put_contents('bar.txt', $textData); + $this->sharedCache->put('', array('mtime' => 10, 'storage_mtime' => 10, 'size' => '-1', 'mimetype' => 'httpd/unix-directory')); // run the propagation code - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir'); + $result = $this->sharedStorage->getWatcher()->checkUpdate(''); $this->assertTrue($result); @@ -94,7 +94,7 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $this->assertEquals($initialSizes['files/container/shareddir'] + $dataLen, $newSizes['files/container/shareddir']); // no more updates - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir'); + $result = $this->sharedStorage->getWatcher()->checkUpdate(''); $this->assertFalse($result); } @@ -108,12 +108,12 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $textData = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; $dataLen = strlen($textData); - $this->sharedCache->put('shareddir/subdir/bar.txt', array('storage_mtime' => 10)); - $this->sharedStorage->file_put_contents('shareddir/subdir/bar.txt', $textData); - $this->sharedCache->put('shareddir/subdir', array('storage_mtime' => 10)); + $this->sharedCache->put('subdir/bar.txt', array('mtime' => 10, 'storage_mtime' => 10, 'size' => $dataLen, 'mimetype' => 'text/plain')); + $this->sharedStorage->file_put_contents('subdir/bar.txt', $textData); + $this->sharedCache->put('subdir', array('mtime' => 10, 'storage_mtime' => 10, 'size' => $dataLen, 'mimetype' => 'text/plain')); // run the propagation code - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir/subdir'); + $result = $this->sharedStorage->getWatcher()->checkUpdate('subdir'); $this->assertTrue($result); @@ -126,20 +126,9 @@ class Test_Files_Sharing_Watcher extends Test_Files_Sharing_Base { $this->assertEquals($initialSizes['files/container/shareddir/subdir'] + $dataLen, $newSizes['files/container/shareddir/subdir']); // no more updates - $result = $this->sharedStorage->getWatcher()->checkUpdate('shareddir/subdir'); - - $this->assertFalse($result); - } - - function testNoUpdateOnRoot() { - // no updates when called for root path - $result = $this->sharedStorage->getWatcher()->checkUpdate(''); + $result = $this->sharedStorage->getWatcher()->checkUpdate('subdir'); $this->assertFalse($result); - - // FIXME: for some reason when running this "naked" test, - // there will be remaining nonsensical entries in the - // database with a path "test-share-user1/container/..." } /** diff --git a/lib/private/share/share.php b/lib/private/share/share.php index ff56b9a48f1..24e2a150640 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1177,10 +1177,6 @@ class Share extends \OC\Share\Constants { // Remove root from file source paths if retrieving own shared items if (isset($uidOwner) && isset($row['path'])) { if (isset($row['parent'])) { - // FIXME: Doesn't always construct the correct path, example: - // Folder '/a/b', share '/a' and '/a/b' to user2 - // user2 reshares /Shared/b and ask for share status of /Shared/a/b - // expected result: path=/Shared/a/b; actual result /Shared/b because of the parent $query = \OC_DB::prepare('SELECT `file_target` FROM `*PREFIX*share` WHERE `id` = ?'); $parentResult = $query->execute(array($row['parent'])); if (\OC_DB::isError($result)) { @@ -1189,7 +1185,7 @@ class Share extends \OC\Share\Constants { \OC_Log::ERROR); } else { $parentRow = $parentResult->fetchRow(); - $tmpPath = '/Shared' . $parentRow['file_target']; + $tmpPath = $parentRow['file_target']; // find the right position where the row path continues from the target path $pos = strrpos($row['path'], $parentRow['file_target']); $subPath = substr($row['path'], $pos); -- cgit v1.2.3 From a86d97295e4e0e1560bcd4cce4bde21aa60a2486 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Apr 2014 17:52:24 +0200 Subject: fix encryption tests after the removal of the shared folder --- apps/files_encryption/hooks/hooks.php | 22 +++++++------- apps/files_encryption/lib/util.php | 5 ++-- apps/files_encryption/tests/hooks.php | 26 +++++----------- apps/files_encryption/tests/share.php | 51 ++++++++++++++++---------------- apps/files_encryption/tests/util.php | 2 +- apps/files_sharing/lib/share/file.php | 6 ++++ apps/files_sharing/lib/sharedstorage.php | 14 ++++----- 7 files changed, 59 insertions(+), 67 deletions(-) (limited to 'apps') diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 0b6c5adf3fb..7a8b54e2d75 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -342,9 +342,7 @@ class Hooks { // if parent has the same type than the child it is a 1:1 share if ($parent['item_type'] === $params['itemType']) { - - // prefix path with Shared - $path = '/Shared' . $parent['file_target']; + $path = $parent['file_target']; } else { // NOTE: parent is folder but shared was a file! @@ -376,11 +374,9 @@ class Hooks { break; } } - // prefix path with Shared - $path = '/Shared' . $parent['file_target'] . $path; + $path = $parent['file_target'] . $path; } else { - // prefix path with Shared - $path = '/Shared' . $parent['file_target'] . $params['fileTarget']; + $path = $parent['file_target'] . $params['fileTarget']; } } } @@ -388,7 +384,8 @@ class Hooks { $sharingEnabled = \OCP\Share::isEnabled(); // get the path including mount point only if not a shared folder - if (strncmp($path, '/Shared', strlen('/Shared') !== 0)) { + list($storage, ) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/files' . $path); + if (!($storage instanceof \OC\Files\Storage\Shared)) { // get path including the the storage mount point $path = $util->getPathWithMountPoint($params['itemSource']); } @@ -454,7 +451,7 @@ class Hooks { } // prefix path with Shared - $path = '/Shared' . $parent['file_target'] . $path; + $path = $parent['file_target'] . $path; } // for group shares get a list of the group members @@ -469,9 +466,10 @@ class Hooks { } // get the path including mount point only if not a shared folder - if (strncmp($path, '/Shared', strlen('/Shared') !== 0)) { + list($storage, ) = \OC\Files\Filesystem::resolvePath($path); + if (!($storage instanceof \OC\Files\Storage\Shared)) { // get path including the the storage mount point - $path = $util->getPathWithMountPoint($params['itemSource']); + //$path = $util->getPathWithMountPoint($params['itemSource']); } // if we unshare a folder we need a list of all (sub-)files @@ -510,6 +508,8 @@ class Hooks { // otherwise we perform a stream copy, so we get a new set of keys $mp1 = $view->getMountPoint('/' . $user . '/files/' . $params['oldpath']); $mp2 = $view->getMountPoint('/' . $user . '/files/' . $params['newpath']); + list($storage1, ) = Filesystem::resolvePath($params['oldpath']); + if ($mp1 === $mp2) { self::$renamedFiles[$params['oldpath']] = array( 'uid' => $ownerOld, diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index b86815021a8..4be4ab95653 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -1408,11 +1408,10 @@ class Util { $this->userFilesDir . '/' . $dir)); foreach ($content as $c) { - $usersPath = isset($c['usersPath']) ? $c['usersPath'] : $c['path']; if ($c['type'] === 'dir') { - $dirList[] = substr($usersPath, strlen("files")); + $dirList[] = substr($c['path'], strlen("files")); } else { - $result[] = substr($usersPath, strlen("files")); + $result[] = substr($c['path'], strlen("files")); } } diff --git a/apps/files_encryption/tests/hooks.php b/apps/files_encryption/tests/hooks.php index d0e4b5f732e..047084ca2c1 100644 --- a/apps/files_encryption/tests/hooks.php +++ b/apps/files_encryption/tests/hooks.php @@ -219,18 +219,20 @@ class Test_Encryption_Hooks extends \PHPUnit_Framework_TestCase { \Test_Encryption_Util::loginHelper(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2); \OC_User::setUserId(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2); - // user2 has a local file with the same name + // user2 update the shared file $this->user2View->file_put_contents($this->filename, $this->data); - // check if all keys are generated - $this->assertTrue($this->rootView->file_exists( + // keys should be stored at user1s dir, not in user2s + $this->assertFalse($this->rootView->file_exists( self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/share-keys/' . $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2 . '.shareKey')); - $this->assertTrue($this->rootView->file_exists( + $this->assertFalse($this->rootView->file_exists( self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/keyfiles/' . $this->filename . '.key')); // delete the Shared file from user1 in data/user2/files/Shared - $this->user2View->unlink('/Shared/' . $this->filename); + $result = $this->user2View->unlink($this->filename); + + $this->assertTrue($result); // now keys from user1s home should be gone $this->assertFalse($this->rootView->file_exists( @@ -242,26 +244,12 @@ class Test_Encryption_Hooks extends \PHPUnit_Framework_TestCase { $this->assertFalse($this->rootView->file_exists( self::TEST_ENCRYPTION_HOOKS_USER1 . '/files_encryption/keyfiles/' . $this->filename . '.key')); - // but user2 keys should still exist - $this->assertTrue($this->rootView->file_exists( - self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/share-keys/' - . $this->filename . '.' . \Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER2 . '.shareKey')); - $this->assertTrue($this->rootView->file_exists( - self::TEST_ENCRYPTION_HOOKS_USER2 . '/files_encryption/keyfiles/' . $this->filename . '.key')); - // cleanup - $this->user2View->unlink($this->filename); - \Test_Encryption_Util::logoutHelper(); \Test_Encryption_Util::loginHelper(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1); \OC_User::setUserId(\Test_Encryption_Hooks::TEST_ENCRYPTION_HOOKS_USER1); - // unshare the file - \OCP\Share::unshare('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, self::TEST_ENCRYPTION_HOOKS_USER2); - - $this->user1View->unlink($this->filename); - if ($stateFilesTrashbin) { OC_App::enable('files_trashbin'); } diff --git a/apps/files_encryption/tests/share.php b/apps/files_encryption/tests/share.php index 1f57d7cb635..512671c5767 100755 --- a/apps/files_encryption/tests/share.php +++ b/apps/files_encryption/tests/share.php @@ -175,7 +175,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); // check if data is the same as we previously written $this->assertEquals($this->dataShort, $retrievedCryptedFile); @@ -213,14 +213,14 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { function testReShareFile($withTeardown = true) { $this->testShareFile(false); - // login as user1 + // login as user2 \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2); // get the file info $fileInfo = $this->view->getFileInfo( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); - // share the file with user2 + // share the file with user3 \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3, OCP\PERMISSION_ALL); // login as admin @@ -236,7 +236,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/' . $this->filename); // check if data is the same as previously written $this->assertEquals($this->dataShort, $retrievedCryptedFile); @@ -333,7 +333,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared' . $this->folder1 + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->folder1 . $this->subfolder . $this->subsubfolder . '/' . $this->filename); // check if data is the same @@ -376,7 +376,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { function testReShareFolder($withTeardown = true) { $fileInfoFolder1 = $this->testShareFolder(false); - // login as user1 + // login as user2 \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2); // disable encryption proxy to prevent recursive calls @@ -385,7 +385,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get the file info from previous created folder $fileInfoSubFolder = $this->view->getFileInfo( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared' . $this->folder1 + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->folder1 . $this->subfolder); // check if we have a valid file info @@ -394,24 +394,24 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // re-enable the file proxy \OC_FileProxy::$enabled = $proxyStatus; - // share the file with user2 + // share the file with user3 \OCP\Share::shareItem('folder', $fileInfoSubFolder['fileid'], \OCP\Share::SHARE_TYPE_USER, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3, OCP\PERMISSION_ALL); // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); - // check if share key for user2 exists + // check if share key for user3 exists $this->assertTrue($this->view->file_exists( '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '/files_encryption/share-keys' . $this->folder1 . $this->subfolder . $this->subsubfolder . '/' . $this->filename . '.' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '.shareKey')); - // login as user2 + // login as user3 \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3); // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/Shared' . $this->subfolder + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/' . $this->subfolder . $this->subsubfolder . '/' . $this->filename); // check if data is the same @@ -419,7 +419,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get the file info $fileInfo = $this->view->getFileInfo( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/Shared' . $this->subfolder + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/' . $this->subfolder . $this->subsubfolder . '/' . $this->filename); // check if we have fileInfos @@ -442,7 +442,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER4 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER4 . '/files/' . $this->filename); // check if data is the same $this->assertEquals($this->dataShort, $retrievedCryptedFile); @@ -624,7 +624,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER3 . '/files/' . $this->filename); // check if data is the same as we previously written $this->assertEquals($this->dataShort, $retrievedCryptedFile); @@ -676,6 +676,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // enable recovery for admin $this->assertTrue($util->setRecoveryForUser(1)); + $util->addRecoveryKeys(); // create folder structure $this->view->mkdir('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '/files' . $this->folder1); @@ -981,7 +982,7 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // share the file \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2, OCP\PERMISSION_ALL); - // check if share key for user2exists + // check if share key for user2 exists $this->assertTrue($this->view->file_exists( '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '/files_encryption/share-keys/' . $this->filename . '.' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '.shareKey')); @@ -990,31 +991,29 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { // login as user2 \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2); - $this->assertTrue($this->view->file_exists('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared/' . $this->filename)); + $this->assertTrue($this->view->file_exists('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename)); // get file contents $retrievedCryptedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); // check if data is the same as we previously written $this->assertEquals($this->dataShort, $retrievedCryptedFile); - // move the file out of the shared folder - $this->view->rename('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/Shared/' . $this->filename, - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); + // move the file to a subfolder + $this->view->rename('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename, + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->folder1 . $this->filename); // check if we can read the moved file $retrievedRenamedFile = $this->view->file_get_contents( - '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); + '/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->folder1 . $this->filename); // check if data is the same as we previously written $this->assertEquals($this->dataShort, $retrievedRenamedFile); - // the owners file should be deleted - $this->assertFalse($this->view->file_exists('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '/files/' . $this->filename)); - // cleanup - $this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER2 . '/files/' . $this->filename); + \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); + $this->view->unlink('/' . \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1 . '/files/' . $this->filename); } } diff --git a/apps/files_encryption/tests/util.php b/apps/files_encryption/tests/util.php index 203ba55dbfd..717b66b86af 100755 --- a/apps/files_encryption/tests/util.php +++ b/apps/files_encryption/tests/util.php @@ -520,8 +520,8 @@ class Test_Encryption_Util extends \PHPUnit_Framework_TestCase { \OC_Util::tearDownFS(); \OC_User::setUserId(''); \OC\Files\Filesystem::tearDown(); - \OC_Util::setupFS($user); \OC_User::setUserId($user); + \OC_Util::setupFS($user); $params['uid'] = $user; $params['password'] = $password; diff --git a/apps/files_sharing/lib/share/file.php b/apps/files_sharing/lib/share/file.php index e1d0b49706b..c0c9e0c107e 100644 --- a/apps/files_sharing/lib/share/file.php +++ b/apps/files_sharing/lib/share/file.php @@ -60,6 +60,12 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent { */ public function generateTarget($filePath, $shareWith, $exclude = null) { $target = '/'.basename($filePath); + + // for group shares we return the target right away + if ($shareWith === false) { + return $target; + } + \OC\Files\Filesystem::initMountPoints($shareWith); $view = new \OC\Files\View('/' . $shareWith . '/files'); $excludeList = \OCP\Share::getItemsSharedWithUser('file', $shareWith, self::FORMAT_TARGET_NAMES); diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 565c3e7af8e..c90f6d71f71 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -195,7 +195,7 @@ class Shared extends \OC\Files\Storage\Common { public function isCreatable($path) { if ($path == '') { - return ($this->getPermissions($this->getMountPoint()) & \OCP\PERMISSION_CREATE); + $path = $this->mountPoint; } return ($this->getPermissions($path) & \OCP\PERMISSION_CREATE); } @@ -206,21 +206,21 @@ class Shared extends \OC\Files\Storage\Common { public function isUpdatable($path) { if ($path == '') { - return false; + $path = $this->mountPoint; } return ($this->getPermissions($path) & \OCP\PERMISSION_UPDATE); } public function isDeletable($path) { if ($path == '') { - return true; + $path = $this->mountPoint; } return ($this->getPermissions($path) & \OCP\PERMISSION_DELETE); } public function isSharable($path) { if ($path == '') { - return false; + $path = $this->mountPoint; } return ($this->getPermissions($path) & \OCP\PERMISSION_SHARE); } @@ -441,7 +441,7 @@ class Shared extends \OC\Files\Storage\Common { public function free_space($path) { if ($path == '') { - return \OC\Files\SPACE_UNKNOWN; + $path = $this->mountPoint; } $source = $this->getSourcePath($path); if ($source) { @@ -531,7 +531,7 @@ class Shared extends \OC\Files\Storage\Common { public function getOwner($path) { if ($path == '') { - return false; + $path = $this->mountPoint; } $source = $this->getFile($path); if ($source) { @@ -542,7 +542,7 @@ class Shared extends \OC\Files\Storage\Common { public function getETag($path) { if ($path == '') { - return parent::getETag($path); + $path = $this->mountPoint; } if ($source = $this->getSourcePath($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); -- cgit v1.2.3 From bfabd247f42f306720d154c3a84285afed589033 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 9 Apr 2014 18:00:00 +0200 Subject: fix updating of shared files --- apps/files_sharing/lib/sharedstorage.php | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index c90f6d71f71..39d01400089 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -144,13 +144,9 @@ class Shared extends \OC\Files\Storage\Common { } public function is_dir($path) { - if ($path == '' || $path == '/') { - return true; - } else if ($source = $this->getSourcePath($path)) { - list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); - return $storage->is_dir($internalPath); - } - return false; + $source = $this->getSourcePath($path); + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); + return $storage->is_dir($internalPath); } public function is_file($path) { -- cgit v1.2.3 From 33cdd938904d92607db56c1f3993b74b14ce9bf3 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 10 Apr 2014 09:54:29 +0200 Subject: fix deleting of shared files --- apps/files_sharing/lib/sharedstorage.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'apps') diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 39d01400089..3a31e965548 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -272,6 +272,9 @@ class Shared extends \OC\Files\Storage\Common { public function unlink($path) { // Delete the file if DELETE permission is granted + if ($path == '') { + $path = $this->mountPoint; + } if ($source = $this->getSourcePath($path)) { if ($this->isDeletable($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); -- cgit v1.2.3 From d4085d81485c3d973faf4211e11af1c1853e619c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 11 Apr 2014 11:18:50 +0200 Subject: make sure that path is not 'false' --- apps/files_sharing/lib/cache.php | 6 +++--- apps/files_sharing/lib/sharedstorage.php | 4 +--- 2 files changed, 4 insertions(+), 6 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index e91c15cc62a..11f180bf7e6 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -169,9 +169,8 @@ class Shared_Cache extends Cache { * @return int file id */ public function put($file, array $data) { - if ($file === '' && isset($data['etag'])) { - return \OCP\Config::setUserValue(\OCP\User::getUser(), 'files_sharing', 'etag', $data['etag']); - } else if ($cache = $this->getSourceCache($file)) { + $file = ($file === false) ? '' : $file; + if ($cache = $this->getSourceCache($file)) { return $cache->put($this->files[$file], $data); } return false; @@ -368,6 +367,7 @@ class Shared_Cache extends Cache { * @return int */ public function calculateFolderSize($path, $entry = null) { + $path = ($path === false) ? '' : $path; if ($cache = $this->getSourceCache($path)) { return $cache->calculateFolderSize($this->files[$path]); } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 3a31e965548..8254f0e05ca 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -272,9 +272,7 @@ class Shared extends \OC\Files\Storage\Common { public function unlink($path) { // Delete the file if DELETE permission is granted - if ($path == '') { - $path = $this->mountPoint; - } + $path = ($path === false) ? '' : $path; if ($source = $this->getSourcePath($path)) { if ($this->isDeletable($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); -- cgit v1.2.3 From c9bd2f7a6c1e72a2ed6d7aa5f180e2c0757ac24c Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 11 Apr 2014 11:54:14 +0200 Subject: also fetch the etag from file cache --- apps/files_sharing/lib/cache.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 11f180bf7e6..bce22a74baf 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -102,7 +102,7 @@ class Shared_Cache extends Cache { } $query = \OC_DB::prepare( 'SELECT `fileid`, `storage`, `path`, `parent`, `name`, `mimetype`, `mimepart`,' - . ' `size`, `mtime`, `encrypted`, `unencrypted_size`, `storage_mtime`' + . ' `size`, `mtime`, `encrypted`, `unencrypted_size`, `storage_mtime`, `etag`' . ' FROM `*PREFIX*filecache` WHERE `fileid` = ?'); $result = $query->execute(array($file)); $data = $result->fetchRow(); @@ -212,6 +212,7 @@ class Shared_Cache extends Cache { * @param string $file */ public function remove($file) { + $file = ($file === false) ? '' : $file; if ($cache = $this->getSourceCache($file)) { $cache->remove($this->files[$file]); } -- cgit v1.2.3 From 22e0a4b9a8835df4bfc88b478e694b0983cb1060 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 14 Apr 2014 10:15:43 +0200 Subject: external storages: allow to mount a folder called "Shared", it is no longer a reserved name --- apps/files_external/lib/config.php | 4 ++-- apps/files_external/tests/mountconfig.php | 5 +---- 2 files changed, 3 insertions(+), 6 deletions(-) (limited to 'apps') diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 71f6ae78878..99eca2f38cf 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -373,8 +373,8 @@ class OC_Mount_Config { $isPersonal = false) { $backends = self::getBackends(); $mountPoint = OC\Files\Filesystem::normalizePath($mountPoint); - if ($mountPoint === '' || $mountPoint === '/' || $mountPoint == '/Shared') { - // can't mount at root or "Shared" folder + if ($mountPoint === '' || $mountPoint === '/') { + // can't mount at root folder return false; } diff --git a/apps/files_external/tests/mountconfig.php b/apps/files_external/tests/mountconfig.php index c89874c94d5..1921ec76af3 100644 --- a/apps/files_external/tests/mountconfig.php +++ b/apps/files_external/tests/mountconfig.php @@ -128,9 +128,6 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { $isPersonal = false; $this->assertFalse(OC_Mount_Config::addMountPoint('', $storageClass, array(), $mountType, $applicable, $isPersonal)); $this->assertFalse(OC_Mount_Config::addMountPoint('/', $storageClass, array(), $mountType, $applicable, $isPersonal)); - $this->assertFalse(OC_Mount_Config::addMountPoint('Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); - $this->assertFalse(OC_Mount_Config::addMountPoint('/Shared', $storageClass, array(), $mountType, $applicable, $isPersonal)); - } /** @@ -488,7 +485,7 @@ class Test_Mount_Config extends \PHPUnit_Framework_TestCase { 'root' => 'someroot' ); - // add mount point as "test" user + // add mount point as "test" user $this->assertTrue( OC_Mount_Config::addMountPoint( '/ext', -- cgit v1.2.3 From 3f6e9e01026031527cd80f1f608d7a98d93e7ebe Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 14 Apr 2014 11:33:10 +0200 Subject: cleanup the shared storage, always keep the whole share resource --- apps/files_sharing/lib/cache.php | 8 ++-- apps/files_sharing/lib/sharedstorage.php | 74 +++++++++++++++++--------------- 2 files changed, 43 insertions(+), 39 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index bce22a74baf..7e44847e404 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -50,7 +50,7 @@ class Shared_Cache extends Cache { if ($target === false || $target === $this->storage->getMountPoint()) { $target = ''; } - $source = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getShareType()); + $source = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getItemType()); if (isset($source['path']) && isset($source['fileOwner'])) { \OC\Files\Filesystem::initMountPoints($source['fileOwner']); $mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']); @@ -86,7 +86,7 @@ class Shared_Cache extends Cache { public function get($file) { if (is_string($file)) { if ($cache = $this->getSourceCache($file)) { - $path = 'files/' . $this->storage->getMountPoint(); + $path = 'files' . $this->storage->getMountPoint(); $path .= ($file !== '') ? '/' . $file : ''; $data = $cache->get($this->files[$file]); $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); @@ -141,7 +141,7 @@ class Shared_Cache extends Cache { $folder = ''; } - $dir = 'files/' . $this->storage->getMountPoint(); + $dir = 'files' . $this->storage->getMountPoint(); $dir .= ($folder !== '') ? '/' . $folder : ''; $cache = $this->getSourceCache($folder); @@ -226,7 +226,7 @@ class Shared_Cache extends Cache { */ public function move($source, $target) { if ($cache = $this->getSourceCache($source)) { - $file = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getShareType()); + $file = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getItemType()); if ($file && isset($file['path'])) { $cache->move($this->files[$source], $file['path']); } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 8254f0e05ca..7ce9dd58b41 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -28,19 +28,11 @@ namespace OC\Files\Storage; */ class Shared extends \OC\Files\Storage\Common { - private $mountPoint; // mount point relative to data/user/files - private $type; // can be "file" or "folder" - private $shareId; // share Id to identify the share in the database - private $fileSource; // file cache ID of the shared item - private $sharedFrom; // the user who shared the file + private $share; // the shared resource private $files = array(); public function __construct($arguments) { - $this->mountPoint = $arguments['shareTarget']; - $this->type = $arguments['shareType']; - $this->shareId = $arguments['shareId']; - $this->fileSource = $arguments['fileSource']; - $this->sharedFrom = $arguments['sharedFrom']; + $this->share = $arguments['share']; } /** @@ -48,7 +40,7 @@ class Shared extends \OC\Files\Storage\Common { * @return string */ public function getId() { - return 'shared::' . $this->mountPoint; + return 'shared::' . $this->getMountPoint(); } /** @@ -56,7 +48,7 @@ class Shared extends \OC\Files\Storage\Common { * @return string */ public function getSourceId() { - return $this->fileSource; + return $this->share['file_source']; } /** @@ -69,14 +61,14 @@ class Shared extends \OC\Files\Storage\Common { if (!isset($this->files[$target])) { // Check for partial files if (pathinfo($target, PATHINFO_EXTENSION) === 'part') { - $source = \OC_Share_Backend_File::getSource(substr($target, 0, -5), $this->getMountPoint(), $this->getShareType()); + $source = \OC_Share_Backend_File::getSource(substr($target, 0, -5), $this->getMountPoint(), $this->getItemType()); if ($source) { $source['path'] .= '.part'; // All partial files have delete permission $source['permissions'] |= \OCP\PERMISSION_DELETE; } } else { - $source = \OC_Share_Backend_File::getSource($target, $this->getMountPoint(), $this->getShareType()); + $source = \OC_Share_Backend_File::getSource($target, $this->getMountPoint(), $this->getItemType()); } $this->files[$target] = $source; } @@ -191,7 +183,7 @@ class Shared extends \OC\Files\Storage\Common { public function isCreatable($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } return ($this->getPermissions($path) & \OCP\PERMISSION_CREATE); } @@ -202,21 +194,21 @@ class Shared extends \OC\Files\Storage\Common { public function isUpdatable($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } return ($this->getPermissions($path) & \OCP\PERMISSION_UPDATE); } public function isDeletable($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } return ($this->getPermissions($path) & \OCP\PERMISSION_DELETE); } public function isSharable($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } return ($this->getPermissions($path) & \OCP\PERMISSION_SHARE); } @@ -241,7 +233,7 @@ class Shared extends \OC\Files\Storage\Common { $source = $this->getSourcePath($path); if ($source) { $info = array( - 'target' => $this->mountPoint . $path, + 'target' => $this->getMountPoint() . $path, 'source' => $source, ); \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_get_contents', $info); @@ -259,7 +251,7 @@ class Shared extends \OC\Files\Storage\Common { return false; } $info = array( - 'target' => $this->mountPoint . '/' . $path, + 'target' => $this->getMountPoint() . '/' . $path, 'source' => $source, ); \OCP\Util::emitHook('\OC\Files\Storage\Shared', 'file_put_contents', $info); @@ -332,7 +324,7 @@ class Shared extends \OC\Files\Storage\Common { WHERE `id` = ?' ); - $result = $query->execute(array($relTargetPath, $this->shareId)); + $result = $query->execute(array($relTargetPath, $this->getShareId())); if ($result) { // update the mount manager with the new paths @@ -358,7 +350,7 @@ class Shared extends \OC\Files\Storage\Common { // if we renamed the mount point we need to adjust the file_target in the // database - if (strlen($sourceMountPoint) >= strlen($path1)) { + if (\OC\Files\Filesystem::normalizePath($sourceMountPoint) === \OC\Files\Filesystem::normalizePath($path1)) { return $this->renameMountPoint($path1, $path2); } @@ -417,7 +409,7 @@ class Shared extends \OC\Files\Storage\Common { } } $info = array( - 'target' => $this->mountPoint . $path, + 'target' => $this->getMountPoint() . $path, 'source' => $source, 'mode' => $mode, ); @@ -438,7 +430,7 @@ class Shared extends \OC\Files\Storage\Common { public function free_space($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } $source = $this->getSourcePath($path); if ($source) { @@ -471,11 +463,7 @@ class Shared extends \OC\Files\Storage\Common { foreach ($shares as $share) { \OC\Files\Filesystem::mount('\OC\Files\Storage\Shared', array( - 'shareTarget' => $share['file_target'], - 'shareType' => $share['item_type'], - 'shareId' => $share['id'], - 'fileSource' => $share['file_source'], - 'sharedFrom' => $share['uid_owner'], + 'share' => $share, ), $options['user_dir'] . '/' . $share['file_target']); } @@ -487,7 +475,23 @@ class Shared extends \OC\Files\Storage\Common { * @return string */ public function getMountPoint() { - return ltrim($this->mountPoint, '/'); + return $this->share['file_target']; + } + + /** + * @brief get share type + * @return integer can be single user share (0) group share (1), unique group share name (2) + */ + private function getShareType() { + return $this->share['share_type']; + } + + /** + * @brief get share ID + * @return integer unique share ID + */ + private function getShareId() { + return $this->share['id']; } /** @@ -495,15 +499,15 @@ class Shared extends \OC\Files\Storage\Common { * @return string */ public function getSharedFrom() { - return $this->sharedFrom; + return $this->share['uid_owner']; } /** * @brief return share type, can be "file" or "folder" * @return string */ - public function getShareType() { - return $this->type; + public function getItemType() { + return $this->share['item_type']; } public function hasUpdated($path, $time) { @@ -528,7 +532,7 @@ class Shared extends \OC\Files\Storage\Common { public function getOwner($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } $source = $this->getFile($path); if ($source) { @@ -539,7 +543,7 @@ class Shared extends \OC\Files\Storage\Common { public function getETag($path) { if ($path == '') { - $path = $this->mountPoint; + $path = $this->getMountPoint(); } if ($source = $this->getSourcePath($path)) { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); -- cgit v1.2.3 From bffcbac7a78c8b88b581489cca9bb44795cf81eb Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 14 Apr 2014 12:04:12 +0200 Subject: allow to rename group share mount points --- apps/files_sharing/lib/sharedstorage.php | 43 ++++++++++++++++++++++++++------ lib/private/share/share.php | 1 + 2 files changed, 37 insertions(+), 7 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 7ce9dd58b41..25e6c0abd28 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -317,14 +317,27 @@ class Shared extends \OC\Files\Storage\Common { $relTargetPath = $this->stripUserFilesPath($targetPath); - // rename mount point - $query = \OC_DB::prepare( - 'Update `*PREFIX*share` - SET `file_target` = ? - WHERE `id` = ?' - ); + // if the user renames a mount point from a group share we need to create a new db entry + // for the unique name + if ($this->getShareType() === \OCP\Share::SHARE_TYPE_GROUP && $this->uniqueNameSet() === false) { + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`item_type`, `item_source`, `item_target`,' + .' `share_type`, `share_with`, `uid_owner`, `permissions`, `stime`, `file_source`,' + .' `file_target`, `token`, `parent`) VALUES (?,?,?,?,?,?,?,?,?,?,?,?)'); + $arguments = array($this->share['item_type'], $this->share['item_source'], $this->share['item_target'], + 2, \OCP\User::getUser(), $this->share['uid_owner'], $this->share['permissions'], $this->share['stime'], $this->share['file_source'], + $relTargetPath, $this->share['token'], $this->share['id']); - $result = $query->execute(array($relTargetPath, $this->getShareId())); + } else { + // rename mount point + $query = \OC_DB::prepare( + 'Update `*PREFIX*share` + SET `file_target` = ? + WHERE `id` = ?' + ); + $arguments = array($relTargetPath, $this->getShareId()); + } + + $result = $query->execute($arguments); if ($result) { // update the mount manager with the new paths @@ -333,6 +346,7 @@ class Shared extends \OC\Files\Storage\Common { $mount->setMountPoint($targetPath . '/'); $mountManager->addMount($mount); $mountManager->removeMount($sourcePath . '/'); + $this->setUniqueName(); } else { \OCP\Util::writeLog('file sharing', @@ -486,6 +500,21 @@ class Shared extends \OC\Files\Storage\Common { return $this->share['share_type']; } + /** + * @brief does the group share already has a user specific unique name + * @return bool + */ + private function uniqueNameSet() { + return (isset($this->share['unique_name']) && $this->share['unique_name']); + } + + /** + * @brief the share now uses a unique name of this user + */ + private function setUniqueName() { + $this->share['unique_name'] = true; + } + /** * @brief get share ID * @return integer unique share ID diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 7af68d1b253..756a4d173e4 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -1139,6 +1139,7 @@ class Share extends \OC\Share\Constants { // Filter out duplicate group shares for users with unique targets if ($row['share_type'] == self::$shareTypeGroupUserUnique && isset($items[$row['parent']])) { $row['share_type'] = self::SHARE_TYPE_GROUP; + $row['unique_name'] = true; // remember that we use a unique name for this user $row['share_with'] = $items[$row['parent']]['share_with']; // Remove the parent group share unset($items[$row['parent']]); -- cgit v1.2.3 From aae22b2d6a5be03fca8de68e43305373dc07b3c4 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 14 Apr 2014 15:04:27 +0200 Subject: update script, create Shared folder and adjust target path for the shares --- apps/files_sharing/appinfo/update.php | 103 ++++++++++++++-------------------- apps/files_sharing/appinfo/version | 2 +- 2 files changed, 44 insertions(+), 61 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index ab32108ea25..ebeeae10d2c 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -1,73 +1,56 @@ execute(); - $groupShares = array(); - //we need to set up user backends, otherwise creating the shares will fail with "because user does not exist" + $view = new \OC\Files\View('/'); + $users = array(); + $shares = array(); + //we need to set up user backends OC_User::useBackend(new OC_User_Database()); OC_Group::useBackend(new OC_Group_Database()); OC_App::loadApps(array('authentication')); - $rootView = new \OC\Files\View(''); + //we need to set up user backends, otherwise creating the shares will fail with "because user does not exist" while ($row = $result->fetchRow()) { - $meta = $rootView->getFileInfo($$row['source']); - $itemSource = $meta['fileid']; - if ($itemSource != -1) { - $file = $meta; - if ($file['mimetype'] == 'httpd/unix-directory') { - $itemType = 'folder'; - } else { - $itemType = 'file'; - } - if ($row['permissions'] == 0) { - $permissions = OCP\PERMISSION_READ | OCP\PERMISSION_SHARE; - } else { - $permissions = OCP\PERMISSION_READ | OCP\PERMISSION_UPDATE | OCP\PERMISSION_SHARE; - if ($itemType == 'folder') { - $permissions |= OCP\PERMISSION_CREATE; - } - } - $pos = strrpos($row['uid_shared_with'], '@'); - if ($pos !== false && OC_Group::groupExists(substr($row['uid_shared_with'], $pos + 1))) { - $shareType = OCP\Share::SHARE_TYPE_GROUP; - $shareWith = substr($row['uid_shared_with'], 0, $pos); - if (isset($groupShares[$shareWith][$itemSource])) { - continue; - } else { - $groupShares[$shareWith][$itemSource] = true; - } - } else if ($row['uid_shared_with'] == 'public') { - $shareType = OCP\Share::SHARE_TYPE_LINK; - $shareWith = null; - } else { - $shareType = OCP\Share::SHARE_TYPE_USER; - $shareWith = $row['uid_shared_with']; - } - OCP\JSON::checkUserExists($row['uid_owner']); - OC_User::setUserId($row['uid_owner']); - //we need to setup the filesystem for the user, otherwise OC_FileSystem::getRoot will fail and break - OC_Util::setupFS($row['uid_owner']); - try { - OCP\Share::shareItem($itemType, $itemSource, $shareType, $shareWith, $permissions); - } - catch (Exception $e) { - $update_error = true; - OCP\Util::writeLog('files_sharing', - 'Upgrade Routine: Skipping sharing "'.$row['source'].'" to "'.$shareWith - .'" (error is "'.$e->getMessage().'")', - OCP\Util::WARN); - } - OC_Util::tearDownFS(); + //collect all user shares + if ($row['share_type'] === "0" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { + $users[] = $row['share_with']; + $shares[$row['id']] = $row['file_target']; + } else if ($row['share_type'] === "1" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { + //collect all group sharesX + $users = array_merge($users, \OC_group::usersInGroup($row['share_with'])); + $shares[$row['id']] = $row['file_target']; + } else if ($row['share_type'] === "2") { + $shares[$row['id']] = $row['file_target']; } } - OC_User::setUserId(null); - if ($update_error) { - OCP\Util::writeLog('files_sharing', 'There were some problems upgrading the sharing of files', OCP\Util::ERROR); + + $unique_users = array_unique($users); + + if (!empty($unique_users) && !empty($shares)) { + + // create folder Shared for each user + + foreach ($unique_users as $user) { + \OC\Files\Filesystem::initMountPoints($user); + if (!$view->file_exists('/' . $user . '/files/Shared')) { + $view->mkdir('/' . $user . '/files/Shared'); + } + } + + $statement = "UPDATE `*PREFIX*share` SET `file_target` = CASE id "; + //update share table + $ids = implode(',', array_keys($shares)); + foreach ($shares as $id => $target) { + $statement .= "WHEN " . $id . " THEN '/Shared" . $target . "' "; + } + $statement .= ' END WHERE `id` IN (' . $ids . ')'; + + $query = OCP\DB::prepare($statement); + $query->execute(array()); } - // NOTE: Let's drop the table after more testing -// $query = OCP\DB::prepare('DROP TABLE `*PREFIX*sharing`'); -// $query->execute(); + } // clean up oc_share table from files which are no longer exists diff --git a/apps/files_sharing/appinfo/version b/apps/files_sharing/appinfo/version index 8f91d33378e..bd73f47072b 100644 --- a/apps/files_sharing/appinfo/version +++ b/apps/files_sharing/appinfo/version @@ -1 +1 @@ -0.3.5.6 +0.4 -- cgit v1.2.3 From b712393e72fc22dc9d38f074b2eca848e6439bcf Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Mon, 14 Apr 2014 17:08:46 +0200 Subject: fix etag propagation --- apps/files_sharing/appinfo/app.php | 2 - apps/files_sharing/lib/helper.php | 35 +++++++++++++++++ apps/files_sharing/lib/updater.php | 77 ++++++++++++++++---------------------- 3 files changed, 68 insertions(+), 46 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php index 217bc005faf..0ef34578117 100644 --- a/apps/files_sharing/appinfo/app.php +++ b/apps/files_sharing/appinfo/app.php @@ -17,6 +17,4 @@ OCP\Util::addScript('files_sharing', 'share'); \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Shared_Updater', 'postDeleteHook'); \OC_Hook::connect('OC_Filesystem', 'delete', '\OC\Files\Cache\Shared_Updater', 'deleteHook'); \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Shared_Updater', 'renameHook'); -\OC_Hook::connect('OCP\Share', 'post_shared', '\OC\Files\Cache\Shared_Updater', 'shareHook'); -\OC_Hook::connect('OCP\Share', 'pre_unshare', '\OC\Files\Cache\Shared_Updater', 'shareHook'); \OC_Hook::connect('OC_Appconfig', 'post_set_value', '\OCA\Files\Share\Maintainer', 'configChangeHook'); diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php index b602fe3599d..1381c0002d3 100644 --- a/apps/files_sharing/lib/helper.php +++ b/apps/files_sharing/lib/helper.php @@ -111,4 +111,39 @@ class Helper { } return true; } + + public static function getSharesFromItem($target) { + $result = array(); + $owner = \OC\Files\Filesystem::getOwner($target); + \OC\Files\Filesystem::initMountPoints($owner); + $info = \OC\Files\Filesystem::getFileInfo($target); + $ownerView = new \OC\Files\View('/'.$owner.'/files'); + if ( $owner != \OCP\User::getUser() ) { + $path = $ownerView->getPath($info['fileid']); + } else { + $path = $target; + } + + + $ids = array(); + while ($path !== '' && $path !== '.' && $path !== '/') { + $info = $ownerView->getFileInfo($path); + $ids[] = $info['fileid']; + $path = dirname($path); + } + + if (!empty($ids)) { + + $idList = array_chunk($ids, 99, true); + + foreach ($idList as $subList) { + $statement = "SELECT `share_with`, `share_type`, `file_target` FROM `*PREFIX*share` WHERE `file_source` IN (" . implode(',', $subList) . ") AND `share_type` IN (0, 1, 2)"; + $query = \OCP\DB::prepare($statement); + $r = $query->execute(); + $result = array_merge($result, $r->fetchAll()); + } + } + + return $result; + } } diff --git a/apps/files_sharing/lib/updater.php b/apps/files_sharing/lib/updater.php index e3a7679292d..f7c0a75aeeb 100644 --- a/apps/files_sharing/lib/updater.php +++ b/apps/files_sharing/lib/updater.php @@ -26,31 +26,48 @@ class Shared_Updater { // shares which can be removed from oc_share after the delete operation was successful static private $toRemove = array(); + /** + * @brief walk up the users file tree and update the etags + * @param string $user + * @param string $path + */ + static private function correctUsersFolder($user, $path) { + // $path points to the mount point which is a virtual folder, so we start with + // the parent + $path = '/files' . dirname($path); + \OC\Files\Filesystem::initMountPoints($user); + $view = new \OC\Files\View('/' . $user); + if ($view->file_exists($path)) { + while ($path !== '/') { + $etag = $view->getETag($path); + $view->putFileInfo($path, array('etag' => $etag)); + $path = dirname($path); + } + } else { + error_log("error!" . 'can not update etags on ' . $path . ' for user ' . $user); + \OCP\Util::writeLog('files_sharing', 'can not update etags on ' . $path . ' for user ' . $user, \OCP\Util::ERROR); + } + } + /** * Correct the parent folders' ETags for all users shared the file at $target * * @param string $target */ static public function correctFolders($target) { - $uid = \OCP\User::getUser(); - $uidOwner = \OC\Files\Filesystem::getOwner($target); - $info = \OC\Files\Filesystem::getFileInfo($target); - $checkedUser = array($uidOwner); // Correct Shared folders of other users shared with - $users = \OCP\Share::getUsersItemShared('file', $info['fileid'], $uidOwner, true); - if (!empty($users)) { - while (!empty($users)) { - $reshareUsers = array(); + $shares = \OCA\Files_Sharing\Helper::getSharesFromItem($target); + + foreach ($shares as $share) { + if ((int)$share['share_type'] === \OCP\Share::SHARE_TYPE_USER) { + self::correctUsersFolder($share['share_with'], $share['file_target']); + } elseif ((int)$share['share_type'] === \OCP\Share::SHARE_TYPE_GROUP) { + $users = \OC_Group::usersInGroup($share['share_with']); foreach ($users as $user) { - if ( !in_array($user, $checkedUser) ) { - $etag = \OC\Files\Filesystem::getETag(''); - \OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag); - // Look for reshares - $reshareUsers = array_merge($reshareUsers, \OCP\Share::getUsersItemShared('file', $info['fileid'], $user, true)); - $checkedUser[] = $user; - } + self::correctUsersFolder($user, $share['file_target']); } - $users = $reshareUsers; + } else { //unique name for group share + self::correctUsersFolder($share['share_with'], $share['file_target']); } } } @@ -107,34 +124,6 @@ class Shared_Updater { self::removeShare($params['path']); } - /** - * @param array $params - */ - static public function shareHook($params) { - if ($params['itemType'] === 'file' || $params['itemType'] === 'folder') { - if (isset($params['uidOwner'])) { - $uidOwner = $params['uidOwner']; - } else { - $uidOwner = \OCP\User::getUser(); - } - $users = \OCP\Share::getUsersItemShared($params['itemType'], $params['fileSource'], $uidOwner, true, false); - if (!empty($users)) { - while (!empty($users)) { - $reshareUsers = array(); - foreach ($users as $user) { - if ($user !== $uidOwner) { - $etag = \OC\Files\Filesystem::getETag(''); - \OCP\Config::setUserValue($user, 'files_sharing', 'etag', $etag); - // Look for reshares - $reshareUsers = array_merge($reshareUsers, \OCP\Share::getUsersItemShared('file', $params['fileSource'], $user, true)); - } - } - $users = $reshareUsers; - } - } - } - } - /** * clean up oc_share table from files which are no longer exists * -- cgit v1.2.3 From 652d417a585ede1564456c446577aa1752253ccd Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 15 Apr 2014 11:19:31 +0200 Subject: we don't allow to share a folder if it contains a share mount point --- apps/files_sharing/lib/cache.php | 7 ++-- apps/files_sharing/lib/sharedstorage.php | 5 +++ apps/files_sharing/tests/api.php | 60 ++++++++++++++++++++++++++++++++ apps/files_sharing/tests/cache.php | 6 ++-- lib/private/files/view.php | 3 +- lib/private/share/share.php | 16 +++++++++ 6 files changed, 90 insertions(+), 7 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 7e44847e404..3d9fbcf4de9 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -411,7 +411,7 @@ class Shared_Cache extends Cache { } /** - * get the path of a file on this storage by it's id + * get the path of a file on this storage relative to the mount point by it's id * * @param int $id * @param string $pathEnd (optional) used internally for recursive calls @@ -419,8 +419,9 @@ class Shared_Cache extends Cache { */ public function getPathById($id, $pathEnd = '') { // direct shares are easy - if ($path = $this->getShareById($id)) { - return $path . $pathEnd; + $path = $this->getShareById($id); + if (is_string($path)) { + return ltrim($pathEnd, '/'); } else { // if the item is a direct share we try and get the path of the parent and append the name of the item to it list($parent, $name) = $this->getParentInfo($id); diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index 25e6c0abd28..eedd279bf2b 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -347,6 +347,7 @@ class Shared extends \OC\Files\Storage\Common { $mountManager->addMount($mount); $mountManager->removeMount($sourcePath . '/'); $this->setUniqueName(); + $this->setMountPoint($relTargetPath); } else { \OCP\Util::writeLog('file sharing', @@ -500,6 +501,10 @@ class Shared extends \OC\Files\Storage\Common { return $this->share['share_type']; } + private function setMountPoint($path) { + $this->share['file_target'] = $path; + } + /** * @brief does the group share already has a user specific unique name * @return bool diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 6354d1099bb..5975eb95882 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -866,6 +866,66 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { $this->assertTrue($result3->succeeded()); + // cleanup + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + $result = \OCP\Share::unshare('folder', $fileInfo1['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + + $this->assertTrue($result); + + + + } + + /** + * @brief share a folder which contains a share mount point, should be forbidden + */ + public function testShareFolderWithAMountPoint() { + // user 1 shares a folder with user2 + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + $fileInfo = $this->view->getFileInfo($this->folder); + + $result = \OCP\Share::shareItem('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + + $this->assertTrue($result); + + // user2 shares a file from the folder as link + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + + $view = new \OC\Files\View('/' . \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2 . '/files'); + $view->mkdir("localDir"); + + // move mount point to the folder "localDir" + $result = $view->rename($this->folder, 'localDir/'.$this->folder); + $this->assertTrue($result !== false); + + // try to share "localDir" + $fileInfo2 = $view->getFileInfo('localDir'); + + $this->assertTrue($fileInfo2 instanceof \OC\Files\FileInfo); + + try { + $result2 = \OCP\Share::shareItem('folder', $fileInfo2['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER3, 31); + } catch (\Exception $e) { + $result2 = false; + } + + $this->assertFalse($result2); + + //cleanup + + $result = $view->rename('localDir/' . $this->folder, $this->folder); + $this->assertTrue($result !== false); + $view->unlink('localDir'); + + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + \OCP\Share::unshare('folder', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_USER, + \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); } } diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php index 7a52f403d8e..b8ebeab3c39 100644 --- a/apps/files_sharing/tests/cache.php +++ b/apps/files_sharing/tests/cache.php @@ -255,7 +255,7 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { */ $sharedCache = $sharedStorage->getCache(); - $this->assertEquals('test.txt', $sharedCache->getPathById($info->getId())); + $this->assertEquals('', $sharedCache->getPathById($info->getId())); } public function testGetPathByIdShareSubFolder() { @@ -276,7 +276,7 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { */ $sharedCache = $sharedStorage->getCache(); - $this->assertEquals('foo', $sharedCache->getPathById($folderInfo->getId())); - $this->assertEquals('foo/bar/test.txt', $sharedCache->getPathById($fileInfo->getId())); + $this->assertEquals('', $sharedCache->getPathById($folderInfo->getId())); + $this->assertEquals('bar/test.txt', $sharedCache->getPathById($fileInfo->getId())); } } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 3f73632be13..a61d58aaf24 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1168,7 +1168,8 @@ class View { * @var \OC\Files\Mount\Mount $mount */ $cache = $mount->getStorage()->getCache(); - if ($internalPath = $cache->getPathById($id)) { + $internalPath = $cache->getPathById($id); + if (is_string($internalPath)) { $fullPath = $mount->getMountPoint() . $internalPath; if (!is_null($path = $this->getRelativePath($fullPath))) { return $path; diff --git a/lib/private/share/share.php b/lib/private/share/share.php index 756a4d173e4..c07dd04b29f 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -489,6 +489,7 @@ class Share extends \OC\Share\Constants { $itemSourceName = $itemSource; } + // verify that the file exists before we try to share it if ($itemType === 'file' or $itemType === 'folder') { $path = \OC\Files\Filesystem::getPath($itemSource); @@ -499,6 +500,21 @@ class Share extends \OC\Share\Constants { } } + //verify that we don't share a folder which already contains a share mount point + if ($itemType === 'folder') { + $path = '/' . $uidOwner . '/files' . \OC\Files\Filesystem::getPath($itemSource) . '/'; + $mountManager = \OC\Files\Filesystem::getMountManager(); + $mounts = $mountManager->getAll(); + foreach ($mounts as $mountPoint => $mount) { + if ($mount->getStorage() instanceof \OC\Files\Storage\Shared && strpos($mountPoint, $path) === 0) { + $message = 'Sharing "' . $itemSourceName . '" failed, because it contains files shared with you!'; + \OC_Log::write('OCP\Share', $message, \OC_Log::ERROR); + throw new \Exception($message); + } + + } + } + // Verify share type and sharing conditions are met if ($shareType === self::SHARE_TYPE_USER) { if ($shareWith == $uidOwner) { -- cgit v1.2.3 From d468cdacf27acf1de78a7b2f07d21d1851aa8f39 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 15 Apr 2014 15:48:54 +0200 Subject: add unit tests which got lost during rebase --- apps/files_sharing/tests/api.php | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'apps') diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php index 5975eb95882..b2f05d10ac6 100644 --- a/apps/files_sharing/tests/api.php +++ b/apps/files_sharing/tests/api.php @@ -928,4 +928,27 @@ class Test_Files_Sharing_Api extends Test_Files_Sharing_Base { \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); } + /** + * @expectedException \Exception + */ + public function testShareNonExisting() { + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + $id = PHP_INT_MAX - 1; + \OCP\Share::shareItem('file', $id, \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + } + + /** + * @expectedException \Exception + */ + public function testShareNotOwner() { + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2); + \OC\Files\Filesystem::file_put_contents('foo.txt', 'bar'); + $info = \OC\Files\Filesystem::getFileInfo('foo.txt'); + + \Test_Files_Sharing_Api::loginHelper(\Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER1); + + \OCP\Share::shareItem('file', $info->getId(), \OCP\Share::SHARE_TYPE_LINK, \Test_Files_Sharing_Api::TEST_FILES_SHARING_API_USER2, 31); + } + } -- cgit v1.2.3 From fb88aba8f4927b3175df34a2a499978a3b4c1b6b Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Tue, 15 Apr 2014 20:18:04 +0200 Subject: some fixes to make the gallery work, this made it necessary to adjust some tests and the encryption code --- apps/files_encryption/hooks/hooks.php | 127 ++++------------------------------ apps/files_encryption/lib/util.php | 101 ++------------------------- apps/files_sharing/lib/cache.php | 5 +- apps/files_sharing/tests/cache.php | 18 ++--- lib/private/share/share.php | 1 + 5 files changed, 33 insertions(+), 219 deletions(-) (limited to 'apps') diff --git a/apps/files_encryption/hooks/hooks.php b/apps/files_encryption/hooks/hooks.php index 7a8b54e2d75..5f0494e62ca 100644 --- a/apps/files_encryption/hooks/hooks.php +++ b/apps/files_encryption/hooks/hooks.php @@ -302,25 +302,6 @@ class Hooks { */ public static function postShared($params) { - // NOTE: $params has keys: - // [itemType] => file - // itemSource -> int, filecache file ID - // [parent] => - // [itemTarget] => /13 - // shareWith -> string, uid of user being shared to - // fileTarget -> path of file being shared - // uidOwner -> owner of the original file being shared - // [shareType] => 0 - // [shareWith] => test1 - // [uidOwner] => admin - // [permissions] => 17 - // [fileSource] => 13 - // [fileTarget] => /test8 - // [id] => 10 - // [token] => - // [run] => whether emitting script should continue to run - // TODO: Should other kinds of item be encrypted too? - if (\OCP\App::isEnabled('files_encryption') === false) { return true; } @@ -331,68 +312,22 @@ class Hooks { $session = new \OCA\Encryption\Session($view); $userId = \OCP\User::getUser(); $util = new Util($view, $userId); - $path = $util->fileIdToPath($params['itemSource']); - - $share = $util->getParentFromShare($params['id']); - //if parent is set, then this is a re-share action - if ($share['parent'] !== null) { - - // get the parent from current share - $parent = $util->getShareParent($params['parent']); - - // if parent has the same type than the child it is a 1:1 share - if ($parent['item_type'] === $params['itemType']) { - $path = $parent['file_target']; - } else { - - // NOTE: parent is folder but shared was a file! - // we try to rebuild the missing path - // some examples we face here - // user1 share folder1 with user2 folder1 has - // the following structure - // /folder1/subfolder1/subsubfolder1/somefile.txt - // user2 re-share subfolder2 with user3 - // user3 re-share somefile.txt user4 - // so our path should be - // /Shared/subfolder1/subsubfolder1/somefile.txt - // while user3 is sharing - - if ($params['itemType'] === 'file') { - // get target path - $targetPath = $util->fileIdToPath($params['fileSource']); - $targetPathSplit = array_reverse(explode('/', $targetPath)); - - // init values - $path = ''; - $sharedPart = ltrim($parent['file_target'], '/'); - - // rebuild path - foreach ($targetPathSplit as $pathPart) { - if ($pathPart !== $sharedPart) { - $path = '/' . $pathPart . $path; - } else { - break; - } - } - $path = $parent['file_target'] . $path; - } else { - $path = $parent['file_target'] . $params['fileTarget']; - } - } - } + $path = \OC\Files\Filesystem::getPath($params['fileSource']); $sharingEnabled = \OCP\Share::isEnabled(); // get the path including mount point only if not a shared folder list($storage, ) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/files' . $path); - if (!($storage instanceof \OC\Files\Storage\Shared)) { - // get path including the the storage mount point - $path = $util->getPathWithMountPoint($params['itemSource']); + + if (!($storage instanceof \OC\Files\Storage\Local)) { + $mountPoint = 'files' . $storage->getMountPoint(); + } else { + $mountPoint = ''; } // if a folder was shared, get a list of all (sub-)folders if ($params['itemType'] === 'folder') { - $allFiles = $util->getAllFiles($path); + $allFiles = $util->getAllFiles($path, $mountPoint); } else { $allFiles = array($path); } @@ -409,13 +344,6 @@ class Hooks { */ public static function postUnshare($params) { - // NOTE: $params has keys: - // [itemType] => file - // [itemSource] => 13 - // [shareType] => 0 - // [shareWith] => test1 - // [itemParent] => - if (\OCP\App::isEnabled('files_encryption') === false) { return true; } @@ -425,34 +353,7 @@ class Hooks { $view = new \OC_FilesystemView('/'); $userId = \OCP\User::getUser(); $util = new Util($view, $userId); - $path = $util->fileIdToPath($params['itemSource']); - - // check if this is a re-share - if ($params['itemParent']) { - - // get the parent from current share - $parent = $util->getShareParent($params['itemParent']); - - // get target path - $targetPath = $util->fileIdToPath($params['itemSource']); - $targetPathSplit = array_reverse(explode('/', $targetPath)); - - // init values - $path = ''; - $sharedPart = ltrim($parent['file_target'], '/'); - - // rebuild path - foreach ($targetPathSplit as $pathPart) { - if ($pathPart !== $sharedPart) { - $path = '/' . $pathPart . $path; - } else { - break; - } - } - - // prefix path with Shared - $path = $parent['file_target'] . $path; - } + $path = \OC\Files\Filesystem::getPath($params['fileSource']); // for group shares get a list of the group members if ($params['shareType'] === \OCP\Share::SHARE_TYPE_GROUP) { @@ -466,15 +367,17 @@ class Hooks { } // get the path including mount point only if not a shared folder - list($storage, ) = \OC\Files\Filesystem::resolvePath($path); - if (!($storage instanceof \OC\Files\Storage\Shared)) { - // get path including the the storage mount point - //$path = $util->getPathWithMountPoint($params['itemSource']); + list($storage, ) = \OC\Files\Filesystem::resolvePath('/' . $userId . '/files' . $path); + + if (!($storage instanceof \OC\Files\Storage\Local)) { + $mountPoint = 'files' . $storage->getMountPoint(); + } else { + $mountPoint = ''; } // if we unshare a folder we need a list of all (sub-)files if ($params['itemType'] === 'folder') { - $allFiles = $util->getAllFiles($path); + $allFiles = $util->getAllFiles($path, $mountPoint); } else { $allFiles = array($path); } diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 4be4ab95653..6372ab31b6e 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -969,33 +969,6 @@ class Util { } - /** - * @brief get path of a file. - * @param int $fileId id of the file - * @return string path of the file - */ - public static function fileIdToPath($fileId) { - - $sql = 'SELECT `path` FROM `*PREFIX*filecache` WHERE `fileid` = ?'; - - $query = \OCP\DB::prepare($sql); - - $result = $query->execute(array($fileId)); - - $path = false; - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); - } else { - $row = $result->fetchRow(); - if ($row) { - $path = substr($row['path'], strlen('files')); - } - } - - return $path; - - } - /** * @brief Filter an array of UIDs to return only ones ready for sharing * @param array $unfilteredUsers users to be checked for sharing readiness @@ -1398,7 +1371,7 @@ class Util { * @param string $dir relative to the users files folder * @return array with list of files relative to the users files folder */ - public function getAllFiles($dir) { + public function getAllFiles($dir, $mountPoint = '') { $result = array(); $dirList = array($dir); @@ -1408,10 +1381,13 @@ class Util { $this->userFilesDir . '/' . $dir)); foreach ($content as $c) { + // getDirectoryContent() returns the paths relative to the mount points, so we need + // to re-construct the complete path + $path = ($mountPoint !== '') ? $mountPoint . '/' . $c['path'] : $c['path']; if ($c['type'] === 'dir') { - $dirList[] = substr($c['path'], strlen("files")); + $dirList[] = substr($path, strlen("files")); } else { - $result[] = substr($c['path'], strlen("files")); + $result[] = substr($path, strlen("files")); } } @@ -1420,54 +1396,6 @@ class Util { return $result; } - /** - * @brief get shares parent. - * @param int $id of the current share - * @return array of the parent - */ - public static function getShareParent($id) { - - $sql = 'SELECT `file_target`, `item_type` FROM `*PREFIX*share` WHERE `id` = ?'; - - $query = \OCP\DB::prepare($sql); - - $result = $query->execute(array($id)); - - $row = array(); - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); - } else { - $row = $result->fetchRow(); - } - - return $row; - - } - - /** - * @brief get shares parent. - * @param int $id of the current share - * @return array of the parent - */ - public static function getParentFromShare($id) { - - $sql = 'SELECT `parent` FROM `*PREFIX*share` WHERE `id` = ?'; - - $query = \OCP\DB::prepare($sql); - - $result = $query->execute(array($id)); - - $row = array(); - if (\OCP\DB::isError($result)) { - \OCP\Util::writeLog('Encryption library', \OC_DB::getErrorMessage($result), \OCP\Util::ERROR); - } else { - $row = $result->fetchRow(); - } - - return $row; - - } - /** * @brief get owner of the shared files. * @param $id @@ -1709,23 +1637,6 @@ class Util { $this->recoverAllFiles('/', $privateKey); } - /** - * Get the path including the storage mount point - * @param int $id - * @return string the path including the mount point like AmazonS3/folder/file.txt - */ - public function getPathWithMountPoint($id) { - list($storage, $internalPath) = \OC\Files\Cache\Cache::getById($id); - $mount = \OC\Files\Filesystem::getMountByStorageId($storage); - $mountPoint = $mount[0]->getMountPoint(); - $path = \OC\Files\Filesystem::normalizePath($mountPoint . '/' . $internalPath); - - // reformat the path to be relative e.g. /user/files/folder becomes /folder/ - $relativePath = \OCA\Encryption\Helper::stripUserFilesPath($path); - - return $relativePath; - } - /** * @brief check if the file is stored on a system wide mount point * @param $path relative to /data/user with leading '/' diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 3d9fbcf4de9..4b473c60577 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -141,15 +141,14 @@ class Shared_Cache extends Cache { $folder = ''; } - $dir = 'files' . $this->storage->getMountPoint(); - $dir .= ($folder !== '') ? '/' . $folder : ''; + $dir = ($folder !== '') ? $folder . '/' : ''; $cache = $this->getSourceCache($folder); if ($cache) { $parent = $this->storage->getFile($folder); $sourceFolderContent = $cache->getFolderContents($this->files[$folder]); foreach ($sourceFolderContent as $key => $c) { - $sourceFolderContent[$key]['path'] = $dir . '/' . $c['name']; + $sourceFolderContent[$key]['path'] = $dir . $c['name']; $sourceFolderContent[$key]['uid_owner'] = $parent['uid_owner']; $sourceFolderContent[$key]['displayname_owner'] = $parent['uid_owner']; } diff --git a/apps/files_sharing/tests/cache.php b/apps/files_sharing/tests/cache.php index b8ebeab3c39..1af73c558d5 100644 --- a/apps/files_sharing/tests/cache.php +++ b/apps/files_sharing/tests/cache.php @@ -100,15 +100,15 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { $check = array( array( 'name' => 'bar.txt', - 'path' => 'files/shareddir/bar.txt' + 'path' => 'bar.txt' ), array( 'name' => 'another too.txt', - 'path' => 'files/shareddir/subdir/another too.txt' + 'path' => 'subdir/another too.txt' ), array( 'name' => 'another.txt', - 'path' => 'files/shareddir/subdir/another.txt' + 'path' => 'subdir/another.txt' ), ); $this->verifyFiles($check, $results); @@ -151,17 +151,17 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { array( array( 'name' => 'bar.txt', - 'path' => 'files/shareddir/bar.txt', + 'path' => 'bar.txt', 'mimetype' => 'text/plain', ), array( 'name' => 'emptydir', - 'path' => 'files/shareddir/emptydir', + 'path' => 'emptydir', 'mimetype' => 'httpd/unix-directory', ), array( 'name' => 'subdir', - 'path' => 'files/shareddir/subdir', + 'path' => 'subdir', 'mimetype' => 'httpd/unix-directory', ), ), @@ -185,17 +185,17 @@ class Test_Files_Sharing_Cache extends Test_Files_Sharing_Base { array( array( 'name' => 'another too.txt', - 'path' => 'files/subdir/another too.txt', + 'path' => 'another too.txt', 'mimetype' => 'text/plain', ), array( 'name' => 'another.txt', - 'path' => 'files/subdir/another.txt', + 'path' => 'another.txt', 'mimetype' => 'text/plain', ), array( 'name' => 'not a text file.xml', - 'path' => 'files/subdir/not a text file.xml', + 'path' => 'not a text file.xml', 'mimetype' => 'application/xml', ), ), diff --git a/lib/private/share/share.php b/lib/private/share/share.php index c07dd04b29f..4e3e261baf5 100644 --- a/lib/private/share/share.php +++ b/lib/private/share/share.php @@ -896,6 +896,7 @@ class Share extends \OC\Share\Constants { $hookParams = array( 'itemType' => $item['item_type'], 'itemSource' => $item['item_source'], + 'fileSource' => $item['file_source'], 'shareType' => $item['share_type'], 'shareWith' => $item['share_with'], 'itemParent' => $item['parent'], -- cgit v1.2.3 From 2049bedcaf670ef2394ce8b19e0d3f2174513b53 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 15 Apr 2014 16:36:05 +0200 Subject: Dont throw an error when a storage isn't found for shared cache --- apps/files_sharing/lib/cache.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 4b473c60577..4a2f0ff08b2 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -53,9 +53,9 @@ class Shared_Cache extends Cache { $source = \OC_Share_Backend_File::getSource($target, $this->storage->getMountPoint(), $this->storage->getItemType()); if (isset($source['path']) && isset($source['fileOwner'])) { \OC\Files\Filesystem::initMountPoints($source['fileOwner']); - $mount = \OC\Files\Filesystem::getMountByNumericId($source['storage']); - if (is_array($mount)) { - $fullPath = $mount[key($mount)]->getMountPoint() . $source['path']; + $mounts = \OC\Files\Filesystem::getMountByNumericId($source['storage']); + if (is_array($mounts) and count($mounts)) { + $fullPath = $mounts[0]->getMountPoint() . $source['path']; list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($fullPath); if ($storage) { $this->files[$target] = $internalPath; -- cgit v1.2.3 From dd1e47b3b896e2ee59faf5f423bb911c5d2c2548 Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 15 Apr 2014 20:26:04 +0200 Subject: typos, use, unused and return fixed --- apps/files_sharing/appinfo/update.php | 4 +++- apps/files_sharing/lib/helper.php | 7 +++---- apps/files_sharing/lib/sharedstorage.php | 5 +++-- 3 files changed, 9 insertions(+), 7 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index ebeeae10d2c..c79a2291e92 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -18,7 +18,7 @@ if (version_compare($installedVersion, '0.4', '<')) { $users[] = $row['share_with']; $shares[$row['id']] = $row['file_target']; } else if ($row['share_type'] === "1" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { - //collect all group sharesX + //collect all group shares $users = array_merge($users, \OC_group::usersInGroup($row['share_with'])); $shares[$row['id']] = $row['file_target']; } else if ($row['share_type'] === "2") { @@ -48,7 +48,9 @@ if (version_compare($installedVersion, '0.4', '<')) { $statement .= ' END WHERE `id` IN (' . $ids . ')'; $query = OCP\DB::prepare($statement); + $query->execute(array()); + } } diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php index 1381c0002d3..e2780e98935 100644 --- a/apps/files_sharing/lib/helper.php +++ b/apps/files_sharing/lib/helper.php @@ -2,6 +2,9 @@ namespace OCA\Files_Sharing; +use OC_Config; +use PasswordHash; + class Helper { /** @@ -26,9 +29,6 @@ class Helper { exit; } - $type = $linkItem['item_type']; - $fileSource = $linkItem['file_source']; - $shareOwner = $linkItem['uid_owner']; $rootLinkItem = \OCP\Share::resolveReShare($linkItem); $path = null; if (isset($rootLinkItem['uid_owner'])) { @@ -61,7 +61,6 @@ class Helper { } $basePath = $path; - $rootName = basename($path); if ($relativePath !== null && \OC\Files\Filesystem::isReadable($basePath . $relativePath)) { $path .= \OC\Files\Filesystem::normalizePath($relativePath); diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index eedd279bf2b..b8a799f720d 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -299,14 +299,14 @@ class Shared extends \OC\Files\Storage\Common { } /** - * @brief rename a shared foder/file + * @brief rename a shared folder/file * @param string $sourcePath * @param string $targetPath * @return bool */ private function renameMountPoint($sourcePath, $targetPath) { - // it shoulbn't be possible to move a Shared storage into another one + // it shouldn't be possible to move a Shared storage into another one list($targetStorage, ) = \OC\Files\Filesystem::resolvePath($targetPath); if ($targetStorage instanceof \OC\Files\Storage\Shared) { \OCP\Util::writeLog('file sharing', @@ -452,6 +452,7 @@ class Shared extends \OC\Files\Storage\Common { list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath($source); return $storage->free_space($internalPath); } + return \OC\Files\SPACE_UNKNOWN; } public function getLocalFile($path) { -- cgit v1.2.3 From 93469ca46865d02d33710a2f70f7f6092c8f5c58 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 16 Apr 2014 16:41:23 +0200 Subject: make it possible to move files out of a shared mount point --- apps/files_sharing/lib/helper.php | 31 +++++++++++++++++++++++++++++++ apps/files_sharing/lib/sharedstorage.php | 27 ++++++++++++++------------- lib/private/files/view.php | 8 ++++---- 3 files changed, 49 insertions(+), 17 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/lib/helper.php b/apps/files_sharing/lib/helper.php index e2780e98935..cc1f7d9ffdf 100644 --- a/apps/files_sharing/lib/helper.php +++ b/apps/files_sharing/lib/helper.php @@ -145,4 +145,35 @@ class Helper { return $result; } + + public static function getUidAndFilename($filename) { + $uid = \OC\Files\Filesystem::getOwner($filename); + \OC\Files\Filesystem::initMountPoints($uid); + if ( $uid != \OCP\User::getUser() ) { + $info = \OC\Files\Filesystem::getFileInfo($filename); + $ownerView = new \OC\Files\View('/'.$uid.'/files'); + $filename = $ownerView->getPath($info['fileid']); + } + return array($uid, $filename); + } + + /** + * @brief Format a path to be relative to the /user/files/ directory + * @param string $path the absolute path + * @return string e.g. turns '/admin/files/test.txt' into 'test.txt' + */ + public static function stripUserFilesPath($path) { + $trimmed = ltrim($path, '/'); + $split = explode('/', $trimmed); + + // it is not a file relative to data/user/files + if (count($split) < 3 || $split[1] !== 'files') { + return false; + } + + $sliced = array_slice($split, 2); + $relPath = implode('/', $sliced); + + return $relPath; + } } diff --git a/apps/files_sharing/lib/sharedstorage.php b/apps/files_sharing/lib/sharedstorage.php index b8a799f720d..5e478d5ead8 100644 --- a/apps/files_sharing/lib/sharedstorage.php +++ b/apps/files_sharing/lib/sharedstorage.php @@ -362,6 +362,9 @@ class Shared extends \OC\Files\Storage\Common { public function rename($path1, $path2) { $sourceMountPoint = \OC\Files\Filesystem::getMountPoint($path1); + $targetMountPoint = \OC\Files\Filesystem::getMountPoint($path2); + $relPath1 = \OCA\Files_Sharing\Helper::stripUserFilesPath($path1); + $relPath2 = \OCA\Files_Sharing\Helper::stripUserFilesPath($path2); // if we renamed the mount point we need to adjust the file_target in the // database @@ -369,21 +372,19 @@ class Shared extends \OC\Files\Storage\Common { return $this->renameMountPoint($path1, $path2); } - // Renaming/moving is only allowed within shared folders - $oldSource = $this->getSourcePath($path1); - if ($oldSource) { - $newSource = $this->getSourcePath(dirname($path2)) . '/' . basename($path2); - // Within the same folder, we only need UPDATE permissions - if (dirname($path1) == dirname($path2) and $this->isUpdatable($path1)) { - list($storage, $oldInternalPath) = \OC\Files\Filesystem::resolvePath($oldSource); - list(, $newInternalPath) = \OC\Files\Filesystem::resolvePath($newSource); - return $storage->rename($oldInternalPath, $newInternalPath); + + if ( // Within the same mount point, we only need UPDATE permissions + ($sourceMountPoint === $targetMountPoint && $this->isUpdatable($sourceMountPoint)) || // otherwise DELETE and CREATE permissions required - } elseif ($this->isDeletable($path1) && $this->isCreatable(dirname($path2))) { - $rootView = new \OC\Files\View(''); - return $rootView->rename($oldSource, $newSource); - } + ($this->isDeletable($path1) && $this->isCreatable(dirname($path2)))) { + + list($user1, $path1) = \OCA\Files_Sharing\Helper::getUidAndFilename($relPath1); + $targetFilename = basename($relPath2); + list($user2, $path2) = \OCA\Files_Sharing\Helper::getUidAndFilename(dirname($relPath2)); + $rootView = new \OC\Files\View(''); + return $rootView->rename('/' . $user1 . '/files/' . $path1, '/' . $user2 . '/files/' . $path2 . '/' . $targetFilename); } + return false; } diff --git a/lib/private/files/view.php b/lib/private/files/view.php index a61d58aaf24..58dfc73dcf3 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -410,16 +410,16 @@ class View { // if source and target are on the same storage we can call the rename operation from the // storage. If it is a "Shared" file/folder we call always the rename operation of the // shared storage to handle mount point renaming, etc correctly - if ($mp1 == $mp2) { + if ($storage1 instanceof \OC\Files\Storage\Shared) { if ($storage1) { - $result = $storage1->rename($internalPath1, $internalPath2); + $result = $storage1->rename($absolutePath1, $absolutePath2); \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); } else { $result = false; } - } elseif ($storage1 instanceof \OC\Files\Storage\Shared) { + } elseif ($mp1 == $mp2) { if ($storage1) { - $result = $storage1->rename($absolutePath1, $absolutePath2); + $result = $storage1->rename($internalPath1, $internalPath2); \OC_FileProxy::runPostProxies('rename', $absolutePath1, $absolutePath2); } else { $result = false; -- cgit v1.2.3 From b102222fed33245c6da8a39c28f0d0a570d0dbea Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Wed, 16 Apr 2014 17:43:02 +0200 Subject: split-up the update script and add unit tests for it --- apps/files_sharing/appinfo/update.php | 58 ++++++++++++++++++++++------------- apps/files_sharing/tests/updater.php | 55 +++++++++++++++++++++++++++++++++ 2 files changed, 92 insertions(+), 21 deletions(-) (limited to 'apps') diff --git a/apps/files_sharing/appinfo/update.php b/apps/files_sharing/appinfo/update.php index c79a2291e92..bc8cda42313 100644 --- a/apps/files_sharing/appinfo/update.php +++ b/apps/files_sharing/appinfo/update.php @@ -2,6 +2,21 @@ $installedVersion = OCP\Config::getAppValue('files_sharing', 'installed_version'); if (version_compare($installedVersion, '0.4', '<')) { + removeSharedFolder(); +} + +// clean up oc_share table from files which are no longer exists +if (version_compare($installedVersion, '0.3.5.6', '<')) { + \OC\Files\Cache\Shared_Updater::fixBrokenSharesOnAppUpdate(); +} + + +/** + * update script for the removal of the logical "Shared" folder, we create physical "Shared" folder and + * update the users file_target so that it doesn't make any difference for the user + * @note parameters are just for testing, please ignore them + */ +function removeSharedFolder($mkdirs = true, $chunkSize = 99) { $query = OCP\DB::prepare('SELECT * FROM `*PREFIX*share`'); $result = $query->execute(); $view = new \OC\Files\View('/'); @@ -14,14 +29,14 @@ if (version_compare($installedVersion, '0.4', '<')) { //we need to set up user backends, otherwise creating the shares will fail with "because user does not exist" while ($row = $result->fetchRow()) { //collect all user shares - if ($row['share_type'] === "0" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { + if ((int)$row['share_type'] === 0 && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { $users[] = $row['share_with']; $shares[$row['id']] = $row['file_target']; - } else if ($row['share_type'] === "1" && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { + } else if ((int)$row['share_type'] === 1 && ($row['item_type'] === 'file' || $row['item_type'] === 'folder')) { //collect all group shares $users = array_merge($users, \OC_group::usersInGroup($row['share_with'])); $shares[$row['id']] = $row['file_target']; - } else if ($row['share_type'] === "2") { + } else if ((int)$row['share_type'] === 2) { $shares[$row['id']] = $row['file_target']; } } @@ -32,30 +47,31 @@ if (version_compare($installedVersion, '0.4', '<')) { // create folder Shared for each user - foreach ($unique_users as $user) { - \OC\Files\Filesystem::initMountPoints($user); - if (!$view->file_exists('/' . $user . '/files/Shared')) { - $view->mkdir('/' . $user . '/files/Shared'); + if ($mkdirs) { + foreach ($unique_users as $user) { + \OC\Files\Filesystem::initMountPoints($user); + if (!$view->file_exists('/' . $user . '/files/Shared')) { + $view->mkdir('/' . $user . '/files/Shared'); + } } } - $statement = "UPDATE `*PREFIX*share` SET `file_target` = CASE id "; - //update share table - $ids = implode(',', array_keys($shares)); - foreach ($shares as $id => $target) { - $statement .= "WHEN " . $id . " THEN '/Shared" . $target . "' "; - } - $statement .= ' END WHERE `id` IN (' . $ids . ')'; + $chunkedShareList = array_chunk($shares, $chunkSize, true); - $query = OCP\DB::prepare($statement); + foreach ($chunkedShareList as $subList) { - $query->execute(array()); + $statement = "UPDATE `*PREFIX*share` SET `file_target` = CASE `id` "; + //update share table + $ids = implode(',', array_keys($subList)); + foreach ($subList as $id => $target) { + $statement .= "WHEN " . $id . " THEN '/Shared" . $target . "' "; + } + $statement .= ' END WHERE `id` IN (' . $ids . ')'; - } + $query = OCP\DB::prepare($statement); -} + $query->execute(array()); + } -// clean up oc_share table from files which are no longer exists -if (version_compare($installedVersion, '0.3.5.6', '<')) { - \OC\Files\Cache\Shared_Updater::fixBrokenSharesOnAppUpdate(); + } } diff --git a/apps/files_sharing/tests/updater.php b/apps/files_sharing/tests/updater.php index 79ae4879b64..3427cfe388c 100644 --- a/apps/files_sharing/tests/updater.php +++ b/apps/files_sharing/tests/updater.php @@ -20,6 +20,8 @@ * */ +require_once __DIR__ . '/../appinfo/update.php'; + /** * Class Test_Files_Sharing_Updater */ @@ -88,4 +90,57 @@ class Test_Files_Sharing_Updater extends \PHPUnit_Framework_TestCase { $result = $countItems->execute()->fetchOne(); $this->assertEquals(2, $result); } + + /** + * test update for the removal of the logical "Shared" folder. It should update + * the file_target for every share and create a physical "Shared" folder for each user + */ + function testRemoveSharedFolder() { + self::prepareDB(); + // run the update routine to remove the shared folder and replace it with a real folder + removeSharedFolder(false, 2); + + // verify results + $query = \OC_DB::prepare('SELECT * FROM `*PREFIX*share`'); + $result = $query->execute(array()); + + $newDBContent = $result->fetchAll(); + + foreach ($newDBContent as $row) { + if ((int)$row['share_type'] === \OCP\Share::SHARE_TYPE_USER) { + $this->assertSame('/Shared', substr($row['file_target'], 0, strlen('/Shared'))); + } else { + $this->assertSame('/ShouldNotChange', $row['file_target']); + } + } + + $this->cleanupSharedTable(); + + } + + private function cleanupSharedTable() { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*share`'); + $query->execute(); + } + + private function prepareDB() { + $this->cleanupSharedTable(); + // add items except one - because this is the test case for the broken share table + $addItems = \OC_DB::prepare('INSERT INTO `*PREFIX*share` (`share_type`, `item_type`, ' . + '`share_with`, `uid_owner` , `file_target`) ' . + 'VALUES (?, ?, ?, ?, ?)'); + $items = array( + array(\OCP\Share::SHARE_TYPE_USER, 'file', 'user1', 'admin' , '/foo'), + array(\OCP\Share::SHARE_TYPE_USER, 'folder', 'user2', 'admin', '/foo2'), + array(\OCP\Share::SHARE_TYPE_USER, 'file', 'user3', 'admin', '/foo3'), + array(\OCP\Share::SHARE_TYPE_USER, 'folder', 'user4', 'admin', '/foo4'), + array(\OCP\Share::SHARE_TYPE_LINK, 'file', 'user1', 'admin', '/ShouldNotChange'), + array(\OCP\Share::SHARE_TYPE_CONTACT, 'contact', 'admin', 'user1', '/ShouldNotChange'), + + ); + foreach($items as $item) { + // the number is used as path_hash + $addItems->execute($item); + } + } } -- cgit v1.2.3 From 7ef8f6d352811e635bc6cf99b56d9482a54eb791 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Thu, 17 Apr 2014 15:54:45 +0200 Subject: always allow to rename the share mount point --- apps/files/js/filelist.js | 13 ++++++++++++- apps/files/lib/helper.php | 3 +++ apps/files_sharing/lib/cache.php | 4 ++++ lib/private/connector/sabre/objecttree.php | 8 +++++++- 4 files changed, 26 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 343da217416..390bf4e0577 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -178,6 +178,13 @@ window.FileList = { if (type === 'dir') { mime = mime || 'httpd/unix-directory'; } + + // user should always be able to rename a share mount point + var allowRename = 0; + if (fileData.isShareMountPoint) { + allowRename = OC.PERMISSION_UPDATE; + } + //containing tr var tr = $('').attr({ "data-id" : fileData.id, @@ -187,7 +194,7 @@ window.FileList = { "data-mime": mime, "data-mtime": mtime, "data-etag": fileData.etag, - "data-permissions": fileData.permissions || this.getDirectoryPermissions() + "data-permissions": fileData.permissions | allowRename || this.getDirectoryPermissions() }); if (type === 'dir') { @@ -283,6 +290,10 @@ window.FileList = { mime = fileData.mimetype, permissions = parseInt(fileData.permissions, 10) || 0; + if (fileData.isShareMountPoint) { + permissions = permissions | OC.PERMISSION_UPDATE; + } + if (type === 'dir') { mime = mime || 'httpd/unix-directory'; } diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php index 88a5ffcfb61..0ae87d12fbf 100644 --- a/apps/files/lib/helper.php +++ b/apps/files/lib/helper.php @@ -96,6 +96,9 @@ class Helper if (isset($i['displayname_owner'])) { $entry['shareOwner'] = $i['displayname_owner']; } + if (isset($i['is_share_mount_point'])) { + $entry['isShareMountPoint'] = $i['is_share_mount_point']; + } return $entry; } diff --git a/apps/files_sharing/lib/cache.php b/apps/files_sharing/lib/cache.php index 4a2f0ff08b2..67a0410ef76 100644 --- a/apps/files_sharing/lib/cache.php +++ b/apps/files_sharing/lib/cache.php @@ -91,6 +91,9 @@ class Shared_Cache extends Cache { $data = $cache->get($this->files[$file]); $data['displayname_owner'] = \OC_User::getDisplayName($this->storage->getSharedFrom()); $data['path'] = $path; + if ($file === '') { + $data['is_share_mount_point'] = true; + } return $data; } } else { @@ -123,6 +126,7 @@ class Shared_Cache extends Cache { } if (isset($mountPoint)) { $data['path'] = 'files/' . $mountPoint; + $data['is_share_mount_point'] = true; } return $data; } diff --git a/lib/private/connector/sabre/objecttree.php b/lib/private/connector/sabre/objecttree.php index d2fa425b22c..2956f608380 100644 --- a/lib/private/connector/sabre/objecttree.php +++ b/lib/private/connector/sabre/objecttree.php @@ -87,9 +87,15 @@ class ObjectTree extends \Sabre_DAV_ObjectTree { list($sourceDir,) = \Sabre_DAV_URLUtil::splitPath($sourcePath); list($destinationDir,) = \Sabre_DAV_URLUtil::splitPath($destinationPath); + $isShareMountPoint = false; + list($storage, $internalPath) = \OC\Files\Filesystem::resolvePath( '/' . \OCP\User::getUser() . '/files/' . $sourcePath); + if ($storage instanceof \OC\Files\Storage\Shared && !$internalPath) { + $isShareMountPoint = true; + } + // check update privileges $fs = $this->getFileView(); - if (!$fs->isUpdatable($sourcePath)) { + if (!$fs->isUpdatable($sourcePath) && !$isShareMountPoint) { throw new \Sabre_DAV_Exception_Forbidden(); } if ($sourceDir !== $destinationDir) { -- cgit v1.2.3 From c2f7848aeb194aa6bf7c3da330e2750648880c48 Mon Sep 17 00:00:00 2001 From: Robin McCorkell Date: Mon, 21 Apr 2014 09:35:15 +0100 Subject: Adjust renaming of directories, fixes #8280 Directories will not be considered to have an extension, even if a dot is found. Stop Scrutinizer being annoyed But the spaced version looked good! Stop jsHint being annoyed These code quality tools are really pestering --- apps/files/js/filelist.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 9c749bb8f34..ab2601c5fb2 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -572,7 +572,8 @@ window.FileList = { input.focus(); //preselect input var len = input.val().lastIndexOf('.'); - if (len === -1) { + if ( len === -1 || + tr.data('type') === 'dir' ) { len = input.val().length; } input.selectRange(0, len); -- cgit v1.2.3 From 435672feaa22c0fc3c8caf7f6dbaefa0edb6f5d3 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Thu, 24 Apr 2014 01:55:33 -0400 Subject: [tx-robot] updated from transifex --- apps/files/l10n/de.php | 1 + apps/files/l10n/de_DE.php | 3 +- apps/files/l10n/en_GB.php | 3 +- apps/files/l10n/et_EE.php | 1 + apps/files/l10n/fi_FI.php | 1 + apps/files/l10n/fr.php | 1 + apps/files/l10n/gl.php | 1 + apps/files/l10n/it.php | 1 + apps/files/l10n/nl.php | 1 + apps/files/l10n/pl.php | 1 + apps/files/l10n/pt_BR.php | 1 + apps/files/l10n/tr.php | 1 + apps/files_external/l10n/et_EE.php | 5 ++ apps/user_ldap/l10n/et_EE.php | 1 + core/l10n/et_EE.php | 1 + l10n/ach/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ady/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/af_ZA/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ak/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/am_ET/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ar/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ast/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/az/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/be/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/bg_BG/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/bn_BD/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/bs/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ca/lib.po | 114 +++++++++++++++++++++++++++-- l10n/cs_CZ/lib.po | 104 +++++++++++++++++++++++++- l10n/cs_CZ/settings.po | 10 +-- l10n/cy_GB/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/da/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/de/files.po | 26 +++---- l10n/de/lib.po | 120 +++++++++++++++++++++++++++--- l10n/de/settings.po | 8 +- l10n/de_AT/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/de_CH/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/de_DE/files.po | 26 +++---- l10n/de_DE/lib.po | 120 +++++++++++++++++++++++++++--- l10n/de_DE/settings.po | 8 +- l10n/el/lib.po | 104 +++++++++++++++++++++++++- l10n/en@pirate/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/en_GB/files.po | 26 +++---- l10n/en_GB/lib.po | 104 +++++++++++++++++++++++++- l10n/en_GB/settings.po | 10 +-- l10n/eo/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/es/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/es_AR/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/es_CL/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/es_CR/lib.po | 102 +++++++++++++++++++++++++- l10n/es_MX/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/et_EE/core.po | 32 ++++---- l10n/et_EE/files.po | 24 +++--- l10n/et_EE/files_external.po | 26 +++---- l10n/et_EE/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/et_EE/settings.po | 14 ++-- l10n/et_EE/user_ldap.po | 30 ++++---- l10n/eu/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/eu_ES/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/fa/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/fi_FI/files.po | 24 +++--- l10n/fi_FI/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/fi_FI/settings.po | 14 ++-- l10n/fr/files.po | 24 +++--- l10n/fr/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/fr/settings.po | 8 +- l10n/fr_CA/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/gl/files.po | 24 +++--- l10n/gl/lib.po | 112 ++++++++++++++++++++++++++-- l10n/gl/settings.po | 8 +- l10n/he/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/hi/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/hr/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/hu_HU/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/hy/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ia/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/id/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/is/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/it/files.po | 25 ++++--- l10n/it/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/it/settings.po | 10 +-- l10n/ja/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/jv/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ka_GE/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/km/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/kn/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ko/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ku_IQ/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/lb/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/lt_LT/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/lv/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/mk/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ml/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ml_IN/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/mn/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ms_MY/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/my_MM/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/nb_NO/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/nds/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ne/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/nl/files.po | 24 +++--- l10n/nl/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/nl/settings.po | 8 +- l10n/nn_NO/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/nqo/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/oc/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/or_IN/lib.po | 102 +++++++++++++++++++++++++- l10n/pa/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/pl/files.po | 24 +++--- l10n/pl/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/pl/settings.po | 8 +- l10n/pt_BR/files.po | 24 +++--- l10n/pt_BR/lib.po | 104 +++++++++++++++++++++++++- l10n/pt_BR/settings.po | 8 +- l10n/pt_PT/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ro/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ru/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/si_LK/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sk/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sk_SK/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sl/lib.po | 104 +++++++++++++++++++++++++- l10n/sq/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sr/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sr@latin/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/su/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/sv/lib.po | 142 ++++++++++++++++++++++++++++++------ l10n/sw_KE/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ta_LK/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/te/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/templates/core.pot | 26 +++---- 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 | 100 ++++++++++++++++++++++++- l10n/templates/private.pot | 100 ++++++++++++++++++++++++- l10n/templates/settings.pot | 2 +- l10n/templates/user_ldap.pot | 24 +++--- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/tr/core.po | 28 +++---- l10n/tr/files.po | 24 +++--- l10n/tr/lib.po | 118 +++++++++++++++++++++++++++--- l10n/tr/settings.po | 12 +-- l10n/tzm/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ug/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/uk/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ur/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/ur_PK/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/uz/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/vi/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/zh_CN/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/zh_HK/lib.po | 140 +++++++++++++++++++++++++++++------ l10n/zh_TW/lib.po | 140 +++++++++++++++++++++++++++++------ lib/l10n/et_EE.php | 1 + lib/l10n/tr.php | 14 ++-- settings/l10n/cs_CZ.php | 2 + settings/l10n/de.php | 1 + settings/l10n/de_DE.php | 1 + settings/l10n/en_GB.php | 3 +- settings/l10n/et_EE.php | 4 + settings/l10n/fi_FI.php | 4 + settings/l10n/fr.php | 1 + settings/l10n/gl.php | 1 + settings/l10n/it.php | 1 + settings/l10n/nl.php | 1 + settings/l10n/pl.php | 1 + settings/l10n/pt_BR.php | 1 + settings/l10n/tr.php | 5 +- 171 files changed, 12284 insertions(+), 2247 deletions(-) (limited to 'apps') diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index c1f5f3a9367..f1ef552b47f 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", +"Upload (max. %s)" => "Hochladen (max. %s)", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 83d8c253eeb..6c4830081f4 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Geändert", "Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", +"Upload (max. %s)" => "Hochladen (max. %s)", "File handling" => "Dateibehandlung", "Maximum upload size" => "Maximale Upload-Größe", "max. possible: " => "maximal möglich:", @@ -75,7 +76,7 @@ $TRANSLATIONS = array( "New" => "Neu", "New text file" => "Neue Textdatei", "Text file" => "Textdatei", -"New folder" => "Neues Ordner", +"New folder" => "Neuer Ordner", "Folder" => "Ordner", "From link" => "Von einem Link", "Deleted files" => "Gelöschte Dateien", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index d57f9434535..2084b61c840 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modified", "Invalid folder name. Usage of 'Shared' is reserved." => "Invalid folder name. Usage of 'Shared' is reserved.", "%s could not be renamed" => "%s could not be renamed", +"Upload (max. %s)" => "Upload (max. %s)", "File handling" => "File handling", "Maximum upload size" => "Maximum upload size", "max. possible: " => "max. possible: ", @@ -87,6 +88,6 @@ $TRANSLATIONS = array( "Upload too large" => "Upload too large", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "The files you are trying to upload exceed the maximum size for file uploads on this server.", "Files are being scanned, please wait." => "Files are being scanned, please wait.", -"Current scanning" => "Current scanning" +"Current scanning" => "Currently scanning" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index ec7c4af85be..ed16e38ac72 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Muudetud", "Invalid folder name. Usage of 'Shared' is reserved." => "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud.", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", +"Upload (max. %s)" => "Üleslaadimine (max. %s)", "File handling" => "Failide käsitlemine", "Maximum upload size" => "Maksimaalne üleslaadimise suurus", "max. possible: " => "maks. võimalik: ", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 530a68e5369..97216ff869e 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -60,6 +60,7 @@ $TRANSLATIONS = array( "Modified" => "Muokattu", "Invalid folder name. Usage of 'Shared' is reserved." => "Virheellinen kansion nimi. 'Shared':n käyttö on varattu.", "%s could not be renamed" => "kohteen %s nimeäminen uudelleen epäonnistui", +"Upload (max. %s)" => "Lähetys (enintään %s)", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", "max. possible: " => "suurin mahdollinen:", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 0ae5180b664..356ce574ed0 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modifié", "Invalid folder name. Usage of 'Shared' is reserved." => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée.", "%s could not be renamed" => "%s ne peut être renommé", +"Upload (max. %s)" => "Envoi (max. %s)", "File handling" => "Gestion des fichiers", "Maximum upload size" => "Taille max. d'envoi", "max. possible: " => "Max. possible :", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 18e0481a2a3..152bdfd7fdc 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome de cartafol non válido. O uso de «Shared» está reservado.", "%s could not be renamed" => "%s non pode cambiar de nome", +"Upload (max. %s)" => "Envío (máx. %s)", "File handling" => "Manexo de ficheiro", "Maximum upload size" => "Tamaño máximo do envío", "max. possible: " => "máx. posíbel: ", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 64abf0bfed9..0ec7e34f7aa 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modificato", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome della cartella non valido. L'uso di 'Shared' è riservato.", "%s could not be renamed" => "%s non può essere rinominato", +"Upload (max. %s)" => "Carica (massimo %s)", "File handling" => "Gestione file", "Maximum upload size" => "Dimensione massima upload", "max. possible: " => "numero mass.: ", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 779a651602d..746c5b9c00e 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Aangepast", "Invalid folder name. Usage of 'Shared' is reserved." => "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd.", "%s could not be renamed" => "%s kon niet worden hernoemd", +"Upload (max. %s)" => "Upload (max. %s)", "File handling" => "Bestand", "Maximum upload size" => "Maximale bestandsgrootte voor uploads", "max. possible: " => "max. mogelijk: ", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 5a5b057e633..d0d05564d18 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modyfikacja", "Invalid folder name. Usage of 'Shared' is reserved." => "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane.", "%s could not be renamed" => "%s nie można zmienić nazwy", +"Upload (max. %s)" => "Wysyłka (max. %s)", "File handling" => "Zarządzanie plikami", "Maximum upload size" => "Maksymalny rozmiar wysyłanego pliku", "max. possible: " => "maks. możliwy:", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 35d2d551703..d0b741196db 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Modificado", "Invalid folder name. Usage of 'Shared' is reserved." => "Nome da pasta inválido. Uso de 'Shared' é reservado.", "%s could not be renamed" => "%s não pode ser renomeado", +"Upload (max. %s)" => "Envio (max. %s)", "File handling" => "Tratamento de Arquivo", "Maximum upload size" => "Tamanho máximo para carregar", "max. possible: " => "max. possível:", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 46f5af30719..586c81072a8 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -64,6 +64,7 @@ $TRANSLATIONS = array( "Modified" => "Değiştirilme", "Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır.", "%s could not be renamed" => "%s yeniden adlandırılamadı", +"Upload (max. %s)" => "Yükle (azami: %s)", "File handling" => "Dosya işlemleri", "Maximum upload size" => "Maksimum yükleme boyutu", "max. possible: " => "mümkün olan en fazla: ", diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index 0589d9fd518..4da749b155b 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -6,6 +6,11 @@ $TRANSLATIONS = array( "Please provide a valid Dropbox app key and secret." => "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna.", "Error configuring Google Drive storage" => "Viga Google Drive'i salvestusruumi seadistamisel", "Saved" => "Salvestatud", +"Note: " => "Märkus:", +" and " => "ja", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Märkus: cURL tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata cURL tugi.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Märkus: FTP tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => "Märkus: \"%s\" pole paigaldatud. Hoidla %s ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata vajalik tugi.", "External Storage" => "Väline salvestuskoht", "Folder name" => "Kausta nimi", "External storage" => "Väline andmehoidla", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index f52449bda8b..11941bf4ac9 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -70,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Varuserveri (replika) port", "Disable Main Server" => "Ära kasuta peaserverit", "Only connect to the replica server." => "Ühendu ainult replitseeriva serveriga.", +"Case insensitive LDAP server (Windows)" => "Tõusutundetu LDAP server (Windows)", "Turn off SSL certificate validation." => "Lülita SSL sertifikaadi kontrollimine välja.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Pole soovitatav, kasuta seda ainult testimiseks! Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma %s serverisse.", "Cache Time-To-Live" => "Puhvri iga", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index f0e05e571ee..4807bc0414c 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -50,6 +50,7 @@ $TRANSLATIONS = array( "_{count} file conflict_::_{count} file conflicts_" => array("{count} failikonflikt","{count} failikonflikti"), "One file conflict" => "Üks failikonflikt", "New Files" => "Uued failid", +"Already existing files" => "Juba olemasolevad failid", "Which files do you want to keep?" => "Milliseid faile sa soovid alles hoida?", "If you select both versions, the copied file will have a number added to its name." => "Kui valid mõlemad versioonid, siis lisatakse kopeeritud faili nimele number.", "Cancel" => "Loobu", diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index 3e9a97a32ff..b058b62142f 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index 07c60bce626..ec381a0d66a 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 47d21e1c5b7..1f22386958d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Gebruikers" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ak/lib.po b/l10n/ak/lib.po index 1404a2e7a6a..496d2a7f1df 100644 --- a/l10n/ak/lib.po +++ b/l10n/ak/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/am_ET/lib.po b/l10n/am_ET/lib.po index 2412812c9c1..4f1c550a53b 100644 --- a/l10n/am_ET/lib.po +++ b/l10n/am_ET/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 1ac427fb619..92ff9686448 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "المستخدمين" msgid "Admin" msgstr "المدير" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "خطا في ترقية \"%s\"." @@ -75,7 +75,7 @@ msgstr "تحميل ملفات ZIP متوقف" msgid "Files need to be downloaded one by one." msgstr "الملفات بحاجة الى ان يتم تحميلها واحد تلو الاخر" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "العودة الى الملفات" @@ -149,15 +149,15 @@ msgstr "لا يمكن إنشاء مجلد التطبيق. يرجى تعديل ا msgid "Application is not enabled" msgstr "التطبيق غير مفعّل" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "لم يتم التأكد من الشخصية بنجاح" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "انتهت صلاحية الكلمة , يرجى اعادة تحميل الصفحة" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "المستخدم غير معروف" @@ -286,16 +286,114 @@ msgstr "الرجاء التحقق من دليل التنصيب. msgid "%s shared »%s« with you" msgstr "%s شارك »%s« معك" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "تعذر العثور على المجلد \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "منذ ثواني" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -305,7 +403,7 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -315,15 +413,15 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "اليوم" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "يوم أمس" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -333,11 +431,11 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "الشهر الماضي" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -347,28 +445,28 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "السنةالماضية" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "سنة مضت" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "يجب ادخال اسم مستخدم صحيح" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index 7608549ac6d..cf11aa5cedb 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 09:20+0000\n" -"Last-Translator: Tornes Llume \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,7 +49,7 @@ msgstr "Usuarios" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Fallu al anovar \"%s\"." @@ -74,7 +74,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "L'aplicación nun ta habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nun pudo alcontrase la estaya \"%s.\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "fai segundos" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "fai %n minutos" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "fai %n hores" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "güei" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ayeri" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "fai %n díes" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mes caberu" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "fai %n meses" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "añu caberu" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "fai años" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 7c931cb158b..4ca3ad7e7c9 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 3a42b36b154..1ec5525d65f 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,16 +284,114 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Секунд таму" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -301,7 +399,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -309,15 +407,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "Сёння" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "Ўчора" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -325,11 +423,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "У мінулым месяцы" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -337,28 +435,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "У мінулым годзе" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "Гадоў таму" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 2f128367a94..04985c07165 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Потребители" msgid "Admin" msgstr "Админ" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "Изтеглянето като ZIP е изключено." msgid "Files need to be downloaded one by one." msgstr "Файловете трябва да се изтеглят един по един." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад към файловете" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Приложението не е включено." -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Възникна проблем с идентификацията" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ключът е изтекъл, моля презаредете страницата" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "Моля направете повторна справка с guies d'instal·lació." msgid "%s shared »%s« with you" msgstr "%s ha compartit »%s« amb tu" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index a6d2b528e15..d0af5364146 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 17:44+0000\n" -"Last-Translator: svetlemodry \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -290,6 +290,104 @@ msgstr "Zkonzultujte, prosím, průvodce instalací." msgid "%s shared »%s« with you" msgstr "%s s vámi sdílí »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 711ef3ddccc..6b6765065a5 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 20:00+0000\n" +"Last-Translator: svetlemodry \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" @@ -94,7 +94,7 @@ msgstr "Nelze přidat skupinu" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Soubory úspěšně dešifrovány" #: ajax/decryptall.php:33 msgid "" @@ -529,7 +529,7 @@ msgstr "Povolit e-mailová upozornění" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index f58729ece0b..d9647cd3f3c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Defnyddwyr" msgid "Admin" msgstr "Gweinyddu" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Mae llwytho ZIP wedi ei ddiffodd." msgid "Files need to be downloaded one by one." msgstr "Mae angen llwytho ffeiliau i lawr fesul un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Nôl i Ffeiliau" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Nid yw'r pecyn wedi'i alluogi" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Gwall dilysu" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,16 +284,114 @@ msgstr "Gwiriwch y canllawiau gosod eto." msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Methu canfod categori \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "eiliad yn ôl" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" @@ -301,7 +399,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" @@ -309,15 +407,15 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "heddiw" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ddoe" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" @@ -325,11 +423,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mis diwethaf" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" @@ -337,28 +435,28 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "y llynedd" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "blwyddyn yn ôl" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 6bef7060df0..d669abb752d 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Brugere" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" @@ -77,7 +77,7 @@ msgstr "ZIP-download er slået fra." msgid "Files need to be downloaded one by one." msgstr "Filer skal downloades en for en." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tilbage til Filer" @@ -151,15 +151,15 @@ msgstr "Kan ikke oprette app-mappe. Ret tilladelser. %s" msgid "Application is not enabled" msgstr "Programmet er ikke aktiveret" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Adgangsfejl" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Adgang er udløbet. Genindlæs siden." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Ukendt bruger" @@ -288,73 +288,171 @@ msgstr "Dobbelttjek venligst installations vejledningerne." msgid "%s shared »%s« with you" msgstr "%s delte »%s« med sig" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunne ikke finde kategorien \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekunder siden" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut siden" msgstr[1] "%n minutter siden" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n time siden" msgstr[1] "%n timer siden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag siden" msgstr[1] "%n dage siden" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "sidste måned" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n måned siden" msgstr[1] "%n måneder siden" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "sidste år" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år siden" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/de/files.po b/l10n/de/files.po index 973943e7a26..63e23b8bf2a 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -6,7 +6,7 @@ # I Robot, 2013 # I Robot, 2014 # Marcel Kühlhorn , 2013 -# Mario Siegmann , 2013 +# Mario Siegmann , 2013-2014 # ninov , 2013 # Pwnicorn , 2013 # stefanniedermann , 2014 @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 09:40+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -185,7 +185,7 @@ msgstr "Die URL darf nicht leer sein" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" @@ -221,35 +221,35 @@ msgstr "Fehler beim Verschieben der Datei" msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" @@ -316,7 +316,7 @@ msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Hochladen (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 6325eb843cc..fb985f57f25 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 20:56+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Benutzer" msgid "Admin" msgstr "Administration" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -79,7 +79,7 @@ msgstr "Der ZIP-Download ist deaktiviert." msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" @@ -153,15 +153,15 @@ msgstr "Es kann kein Applikationsordner erstellt werden. Bitte passe die Berech msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Fehler bei der Anmeldung" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte lade die Seite neu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Unbekannter Benutzer" @@ -290,6 +290,104 @@ msgstr "Bitte prüfe die Installationsanleitungen." msgid "%s shared »%s« with you" msgstr "%s teilte »%s« mit Dir" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" @@ -343,20 +441,20 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Folgende Zeichen sind im Benutzernamen erlaubt: \"a-z\", \"A-Z\", \"0-9\" und \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Dieser Benutzername existiert bereits" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 573b92899fd..70f58f382ad 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 09:40+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -530,7 +530,7 @@ msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index bc182373dba..dda2e8bf4ec 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index b39979b3657..24f9b93858a 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -52,7 +52,7 @@ msgstr "Benutzer" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -77,7 +77,7 @@ msgstr "Der ZIP-Download ist deaktiviert." msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" @@ -151,15 +151,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -288,73 +288,171 @@ msgstr "Bitte prüfen Sie die Installationsanleitungen." msgid "%s shared »%s« with you" msgstr "%s teilt »%s« mit Ihnen" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Die Kategorie «%s» konnte nicht gefunden werden." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Gerade eben" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "Vor %n Minuten" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Vor %n Stunden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "Heute" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "Gestern" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "Vor %n Tagen" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "Letzten Monat" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Vor %n Monaten" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "Letztes Jahr" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "Vor Jahren" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 843016e5ae1..ccb5acaeff1 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -8,7 +8,7 @@ # I Robot, 2013 # I Robot, 2014 # Marcel Kühlhorn , 2013 -# Mario Siegmann , 2013 +# Mario Siegmann , 2013-2014 # stefanniedermann , 2014 # traductor, 2013 # noxin , 2013 @@ -18,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 13:50+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -188,7 +188,7 @@ msgstr "Die URL darf nicht leer sein" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" @@ -224,35 +224,35 @@ msgstr "Fehler beim Verschieben der Datei" msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hoch geladen" @@ -319,7 +319,7 @@ msgstr "%s konnte nicht umbenannt werden" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Hochladen (max. %s)" #: templates/admin.php:4 msgid "File handling" @@ -367,7 +367,7 @@ msgstr "Textdatei" #: templates/index.php:12 msgid "New folder" -msgstr "Neues Ordner" +msgstr "Neuer Ordner" #: templates/index.php:13 msgid "Folder" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index a33e633646b..4447942d676 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-14 01:54-0400\n" -"PO-Revision-Date: 2014-04-13 20:58+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -54,7 +54,7 @@ msgstr "Benutzer" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -79,7 +79,7 @@ msgstr "Der ZIP-Download ist deaktiviert." msgid "Files need to be downloaded one by one." msgstr "Die Dateien müssen einzeln heruntergeladen werden." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Zurück zu \"Dateien\"" @@ -153,15 +153,15 @@ msgstr "Der Ordner für die Anwendung konnte nicht angelegt werden. Bitte überp msgid "Application is not enabled" msgstr "Die Anwendung ist nicht aktiviert" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentifizierungs-Fehler" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Unbekannter Benutzer" @@ -290,6 +290,104 @@ msgstr "Bitte prüfen Sie die Installationsanleitungen." msgid "%s shared »%s« with you" msgstr "%s hat »%s« mit Ihnen geteilt" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" @@ -343,20 +441,20 @@ msgstr "Letztes Jahr" msgid "years ago" msgstr "Vor Jahren" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Folgende Zeichen sind im Benutzernamen erlaubt: \"a-z\", \"A-Z\", \"0-9\" und \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Der Benutzername existiert bereits" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index e769fdb0a04..6d79de897ed 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 09:40+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -530,7 +530,7 @@ msgstr "Mail-Benachrichtigung erlauben" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 35ac8cf3935..edea3a7e211 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 21:50+0000\n" -"Last-Translator: Γιάννης Ανθυμίδης \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -289,6 +289,104 @@ msgstr "Ελέγξτε ξανά τις οδηγίες εγκατά msgid "%s shared »%s« with you" msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index ac875a524d7..5a7e2c17467 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/en_GB/files.po b/l10n/en_GB/files.po index 8d455ef98fa..862e41169c8 100644 --- a/l10n/en_GB/files.po +++ b/l10n/en_GB/files.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:31+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -178,7 +178,7 @@ msgstr "URL cannot be empty" msgid "In the home folder 'Shared' is a reserved filename" msgstr "In the home folder 'Shared' is a reserved file name" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} already exists" @@ -214,35 +214,35 @@ msgstr "Error moving file" msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Pending" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Could not rename file" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Error deleting file." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n files" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} and {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploading %n file" @@ -309,7 +309,7 @@ msgstr "%s could not be renamed" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Upload (max. %s)" #: templates/admin.php:4 msgid "File handling" @@ -407,4 +407,4 @@ msgstr "Files are being scanned, please wait." #: templates/index.php:106 msgid "Current scanning" -msgstr "Current scanning" +msgstr "Currently scanning" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 0cc06ec6007..0d6696a6176 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-22 09:37+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -285,6 +285,104 @@ msgstr "Please double check the installation guides." msgid "%s shared »%s« with you" msgstr "%s shared \"%s\" with you" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index c09c1b3e9c2..6b178f05eba 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:31+0000\n" +"Last-Translator: mnestis \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -301,7 +301,7 @@ msgstr "Warning: Home directory for user \"{user}\" already exists" #: personal.php:48 personal.php:49 msgid "__language_name__" -msgstr "__language_name__" +msgstr "English (British English)" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" @@ -522,7 +522,7 @@ msgstr "Allow mail notification" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Allow users to send mail notification for shared files" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index ac9e0fc8f4f..3943f0c74ce 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Uzantoj" msgid "Admin" msgstr "Administranto" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "ZIP-elŝuto estas malkapabligita." msgid "Files need to be downloaded one by one." msgstr "Dosieroj devas elŝutiĝi unuope." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Reen al la dosieroj" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "La aplikaĵo ne estas kapabligita" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Aŭtentiga eraro" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ĵetono eksvalidiĝis. Bonvolu reŝargi la paĝon." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "Bonvolu duoble kontroli la gvidilon por instalo." msgid "%s shared »%s« with you" msgstr "%s kunhavigis “%s” kun vi" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ne troviĝis kategorio “%s”" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "antaŭ %n minutoj" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "antaŭ %n horoj" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hodiaŭ" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "hieraŭ" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "antaŭ %n tagoj" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "lastamonate" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "antaŭ %n monatoj" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "lastajare" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "jaroj antaŭe" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 91209fc57d5..aa43afb5155 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 15:50+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -55,7 +55,7 @@ msgstr "Usuarios" msgid "Admin" msgstr "Administración" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falló la actualización \"%s\"." @@ -80,7 +80,7 @@ msgstr "La descarga en ZIP está desactivada." msgid "Files need to be downloaded one by one." msgstr "Los archivos deben ser descargados uno por uno." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Volver a Archivos" @@ -154,15 +154,15 @@ msgstr "No se puede crear la carpeta de la aplicación. Corrija los permisos. %s msgid "Application is not enabled" msgstr "La aplicación no está habilitada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Error de autenticación" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirado. Por favor, recarga la página." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Usuario desconocido" @@ -291,73 +291,171 @@ msgstr "Por favor, vuelva a comprobar las guías de instalaciónguía de instalaciónguías de instalación\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" @@ -136,59 +136,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Seaded" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Salvestamine..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut tagasi" msgstr[1] "%n minutit tagasi" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tund tagasi" msgstr[1] "%n tundi tagasi" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "täna" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "eile" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n päev tagasi" msgstr[1] "%n päeva tagasi" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuu tagasi" msgstr[1] "%n kuud tagasi" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "aastat tagasi" @@ -232,7 +232,7 @@ msgstr "Uued failid" #: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Juba olemasolevad failid" #: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index 6dd46cb0f2c..9780dd446f5 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:23+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -179,7 +179,7 @@ msgstr "URL ei saa olla tühi" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" @@ -215,35 +215,35 @@ msgstr "Viga faili eemaldamisel" msgid "Error" msgstr "Viga" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Ei suuda faili ümber nimetada" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Viga faili kustutamisel." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" msgstr[1] "%n faili" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laadin üles %n faili" @@ -310,7 +310,7 @@ msgstr "%s ümbernimetamine ebaõnnestus" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Üleslaadimine (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 094d7f16ab5..6c6de1a4379 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:43+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,34 +43,34 @@ msgstr "Viga Google Drive'i salvestusruumi seadistamisel" msgid "Saved" msgstr "Salvestatud" -#: lib/config.php:592 +#: lib/config.php:598 msgid "Note: " -msgstr "" +msgstr "Märkus:" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " -msgstr "" +msgstr "ja" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Märkus: cURL tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata cURL tugi." -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Märkus: FTP tugi puudub PHP paigalduses. FTP %s hoidla ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr "" +msgstr "Märkus: \"%s\" pole paigaldatud. Hoidla %s ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata vajalik tugi." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 7602de2d16e..f6146366c68 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Kasutajad" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." @@ -75,7 +75,7 @@ msgstr "ZIP-ina allalaadimine on välja lülitatud." msgid "Files need to be downloaded one by one." msgstr "Failid tuleb alla laadida ükshaaval." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tagasi failide juurde" @@ -149,15 +149,15 @@ msgstr "Ei saa luua rakendi kataloogi. Palun korrigeeri õigusi. %s" msgid "Application is not enabled" msgstr "Rakendus pole sisse lülitatud" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentimise viga" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Kontrollkood aegus. Paelun lae leht uuesti." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Tundmatu kasutaja" @@ -286,73 +286,171 @@ msgstr "Palun tutvu veelkord paigalduse juhenditega." msgid "%s shared »%s« with you" msgstr "%s jagas sinuga »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ei leia kategooriat \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundit tagasi" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutit tagasi" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n tundi tagasi" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "täna" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "eile" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n päeva tagasi" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "viimasel kuul" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n kuud tagasi" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "viimasel aastal" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "aastat tagasi" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" -msgstr "" +msgstr "Kasutajanimes on lubatud ainult järgnevad tähemärgid: \"a-z\", \"A-Z\", \"0-9\" ja \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Sisesta nõuetele vastav parool" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Kasutajanimi on juba kasutuses" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 8aa434c9821..188aaff2c69 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:15+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,17 +88,17 @@ msgstr "Keela grupi lisamine" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Failide krüpteerimine õnnestus" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Ei suutnud faile dekrüpteerida, palun kontrolli oma owncloud.log-i või küsi nõu administraatorilt" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Ei suutnud failde dekrüpteerida, kontrolli parooli ja proovi uuesti" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -523,7 +523,7 @@ msgstr "Luba teavitused e-postiga" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 71a4cf2bf27..9735b87dbe6 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:17+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,43 +88,43 @@ msgstr "Korras" msgid "Error" msgstr "Viga" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "Seadistus on korras" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "Seadistus on vigane" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "Seadistus on puudulik" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "Vali grupid" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "Vali objekti klassid" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "Vali atribuudid" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "Ühenduse testimine õnnestus" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "Ühenduse testimine ebaõnnestus" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "Oled kindel, et tahad kustutada praegust serveri seadistust?" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "Kinnita kustutamine" @@ -146,7 +146,7 @@ msgstr[1] "%s kasutajat leitud" msgid "Invalid Host" msgstr "Vigane server" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "Ei suuda leida soovitud funktsioonaalsust" @@ -338,7 +338,7 @@ msgstr "Ühendu ainult replitseeriva serveriga." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Tõusutundetu LDAP server (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 6c379c48627..e2eee4be457 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Erabiltzaileak" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ezin izan da \"%s\" eguneratu." @@ -75,7 +75,7 @@ msgstr "ZIP deskarga ez dago gaituta." msgid "Files need to be downloaded one by one." msgstr "Fitxategiak banan-banan deskargatu behar dira." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Itzuli fitxategietara" @@ -149,15 +149,15 @@ msgstr "Ezin izan da aplikazioaren karpeta sortu. Mesdez konpondu baimenak. %s" msgid "Application is not enabled" msgstr "Aplikazioa ez dago gaituta" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentifikazio errorea" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Tokena iraungitu da. Mesedez birkargatu orria." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,73 +286,171 @@ msgstr "Mesedez begiratu instalazio gidak." msgid "%s shared »%s« with you" msgstr "%s-ek »%s« zurekin partekatu du" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ezin da \"%s\" kategoria aurkitu" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segundu" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "orain dela minutu %n" msgstr[1] "orain dela %n minutu" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "orain dela ordu %n" msgstr[1] "orain dela %n ordu" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "gaur" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "atzo" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "orain dela egun %n" msgstr[1] "orain dela %n egun" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "joan den hilabetean" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "orain dela hilabete %n" msgstr[1] "orain dela %n hilabete" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "joan den urtean" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "urte" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Baliozko erabiltzaile izena eman behar da" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Erabiltzaile izena dagoeneko erabiltzen ari da" diff --git a/l10n/eu_ES/lib.po b/l10n/eu_ES/lib.po index 73af4f395d6..2fbdf0eae66 100644 --- a/l10n/eu_ES/lib.po +++ b/l10n/eu_ES/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 2f2c29cb563..8a60e81be0a 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "کاربران" msgid "Admin" msgstr "مدیر" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "دانلود به صورت فشرده غیر فعال است" msgid "Files need to be downloaded one by one." msgstr "فایل ها باید به صورت یکی یکی دانلود شوند" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "بازگشت به فایل ها" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "برنامه فعال نشده است" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "خطا در اعتبار سنجی" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "رمز منقضی شده است. لطفا دوباره صفحه را بارگذاری نمایید." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,69 +285,167 @@ msgstr "لطفاً دوباره راهنمای نصبرا بر msgid "%s shared »%s« with you" msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "دسته بندی %s یافت نشد" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "امروز" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "دیروز" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ماه قبل" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "سال قبل" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "سال‌های قبل" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "نام کاربری صحیح باید وارد شود" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 6cf56c8282b..df5e50b6732 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+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" @@ -180,7 +180,7 @@ msgstr "Osoite ei voi olla tyhjä" msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" @@ -216,35 +216,35 @@ msgstr "Virhe tiedostoa siirrettäessä" msgid "Error" msgstr "Virhe" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Tiedoston nimeäminen uudelleen epäonnistui" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Virhe tiedostoa poistaessa." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" msgstr[1] "%n tiedostoa" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lähetetään %n tiedosto" @@ -311,7 +311,7 @@ msgstr "kohteen %s nimeäminen uudelleen epäonnistui" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Lähetys (enintään %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 68427d6e24a..5f02f3c05ff 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 12:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -49,7 +49,7 @@ msgstr "Käyttäjät" msgid "Admin" msgstr "Ylläpitäjä" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kohteen \"%s\" päivitys epäonnistui." @@ -74,7 +74,7 @@ msgstr "ZIP-lataus on poistettu käytöstä." msgid "Files need to be downloaded one by one." msgstr "Tiedostot on ladattava yksittäin." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Takaisin tiedostoihin" @@ -148,15 +148,15 @@ msgstr "Sovelluskansion luominen ei onnistu. Korjaa käyttöoikeudet. %s" msgid "Application is not enabled" msgstr "Sovellusta ei ole otettu käyttöön" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Tunnistautumisvirhe" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Valtuutus vanheni. Lataa sivu uudelleen." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Tuntematon käyttäjä" @@ -285,73 +285,171 @@ msgstr "Lue tarkasti asennusohjeet." msgid "%s shared »%s« with you" msgstr "%s jakoi kohteen »%s« kanssasi" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Luokkaa \"%s\" ei löytynyt" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekuntia sitten" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuutti sitten" msgstr[1] "%n minuuttia sitten" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n tunti sitten" msgstr[1] "%n tuntia sitten" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "tänään" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "eilen" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n päivä sitten" msgstr[1] "%n päivää sitten" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "viime kuussa" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n kuukausi sitten" msgstr[1] "%n kuukautta sitten" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "viime vuonna" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "vuotta sitten" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Vain seuraavat merkit ovat sallittuja käyttäjätunnuksessa: \"a-z\", \"A-Z\", \"0-9\" ja \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Anna kelvollinen käyttäjätunnus" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Anna kelvollinen salasana" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Käyttäjätunnus on jo käytössä" diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index a29b87e036b..ad7595a433a 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+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" @@ -356,7 +356,7 @@ msgstr "Turvallisuusvaroitus" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "Käytät %sia HTTP-yhteydellä. Suosittelemme määrittämään palvelimen vaatimaan salattua HTTPS-yhteyttä." #: templates/admin.php:64 msgid "" @@ -522,7 +522,7 @@ msgstr "Salli sähköposti-ilmoitukset" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" #: templates/admin.php:261 msgid "Security" @@ -743,7 +743,7 @@ msgstr "Joko png- tai jpg-kuva. Mieluite neliö, voit kuitenkin rajata kuvaa." #: templates/personal.php:100 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "Avatar-kuvasi pohjautuu alkuperäiseen tiliisi." #: templates/personal.php:104 msgid "Cancel" @@ -778,7 +778,7 @@ msgstr "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostoje #: templates/personal.php:157 msgid "Log-in password" -msgstr "" +msgstr "Kirjautumissalasana" #: templates/personal.php:162 msgid "Decrypt all Files" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index 84a033faa67..3b84f9ce30e 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+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" @@ -182,7 +182,7 @@ msgstr "L'URL ne peut pas être vide" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" @@ -218,35 +218,35 @@ msgstr "Erreur lors du déplacement du fichier" msgid "Error" msgstr "Erreur" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "En attente" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Impossible de renommer le fichier" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Erreur pendant la suppression du fichier." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" msgstr[1] "%n fichiers" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} et {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Téléversement de %n fichier" @@ -313,7 +313,7 @@ msgstr "%s ne peut être renommé" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Envoi (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index f556076b575..1ad2227f67b 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 11:50+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Utilisateurs" msgid "Admin" msgstr "Administration" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Echec de la mise à niveau \"%s\"." @@ -77,7 +77,7 @@ msgstr "Téléchargement ZIP désactivé." msgid "Files need to be downloaded one by one." msgstr "Les fichiers nécessitent d'être téléchargés un par un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Retour aux Fichiers" @@ -151,15 +151,15 @@ msgstr "Impossible de créer le dossier de l'application. Corrigez les droits d' msgid "Application is not enabled" msgstr "L'application n'est pas activée" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Erreur d'authentification" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "La session a expiré. Veuillez recharger la page." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Utilisateur inconnu" @@ -288,73 +288,171 @@ msgstr "Veuillez vous référer au guide d'installation." msgid "%s shared »%s« with you" msgstr "%s partagé »%s« avec vous" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Impossible de trouver la catégorie \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "il y a quelques secondes" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "il y a %n minutes" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "Il y a %n heures" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "aujourd'hui" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "hier" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "il y a %n jours" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "le mois dernier" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "Il y a %n mois" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "l'année dernière" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "il y a plusieurs années" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Seuls les caractères suivants sont autorisés dans un nom d'utilisateur : \"a-z\", \"A-Z\", \"0-9\", et \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Le nom d'utilisateur est déjà utilisé" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index ab5c1b50a56..42cc8cb0a48 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 08:11+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" @@ -532,7 +532,7 @@ msgstr "Autoriser les notifications par couriel" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/fr_CA/lib.po b/l10n/fr_CA/lib.po index e00186eb0cb..09727cd39d6 100644 --- a/l10n/fr_CA/lib.po +++ b/l10n/fr_CA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index a7930014cc1..a34fba6ea6e 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10:24+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" @@ -179,7 +179,7 @@ msgstr "O URL non pode quedar en branco." msgid "In the home folder 'Shared' is a reserved filename" msgstr "«Shared» dentro do cartafol persoal é un nome reservado" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" @@ -215,35 +215,35 @@ msgstr "Produciuse un erro ao mover o ficheiro" msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Non foi posíbel renomear o ficheiro" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Produciuse un erro ao eliminar o ficheiro." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Cargando %n ficheiro" @@ -310,7 +310,7 @@ msgstr "%s non pode cambiar de nome" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Envío (máx. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 85c9c04058d..02a26c87e1b 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-19 01:55-0400\n" -"PO-Revision-Date: 2014-04-18 11:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -75,7 +75,7 @@ msgstr "As descargas ZIP están desactivadas." msgid "Files need to be downloaded one by one." msgstr "Os ficheiros necesitan seren descargados dun en un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Volver aos ficheiros" @@ -149,15 +149,15 @@ msgstr "Non é posíbel crear o cartafol de aplicativos. Corrixa os permisos. %s msgid "Application is not enabled" msgstr "O aplicativo non está activado" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Produciuse un erro de autenticación" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Testemuña caducada. Recargue a páxina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Usuario descoñecido" @@ -286,6 +286,104 @@ msgstr "Volva comprobar as guías de instalación" msgid "%s shared »%s« with you" msgstr "%s compartiu «%s» con vostede" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 03e60c26d9c..4e595e7c9b4 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10:24+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" @@ -523,7 +523,7 @@ msgstr "Permitir o envío de notificacións por correo" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 98e02d70405..6a707e23ddc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "משתמשים" msgid "Admin" msgstr "מנהל" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "הורדת ZIP כבויה" msgid "Files need to be downloaded one by one." msgstr "יש להוריד את הקבצים אחד אחרי השני." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "חזרה לקבצים" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "יישומים אינם מופעלים" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "שגיאת הזדהות" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "פג תוקף. נא לטעון שוב את הדף." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "נא לעיין שוב במדריכי ההתקנה." msgid "%s shared »%s« with you" msgstr "%s שיתף/שיתפה איתך את »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "לא ניתן למצוא את הקטגוריה „%s“" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "שניות" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "לפני %n דקות" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "לפני %n שעות" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "היום" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "אתמול" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "לפני %n ימים" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "חודש שעבר" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "לפני %n חודשים" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "שנה שעברה" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "שנים" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "יש לספק שם משתמש תקני" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "יש לספק ססמה תקנית" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 955a511e0f0..dac38b91b20 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "उपयोगकर्ता" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 27e93095437..c89d48b91fa 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Korisnici" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Greška kod autorizacije" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundi prije" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "danas" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "jučer" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "prošli mjesec" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "prošlu godinu" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "godina" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 858b0c42ef8..2b52cf384d2 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -51,7 +51,7 @@ msgstr "Felhasználók" msgid "Admin" msgstr "Adminsztráció" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen Frissítés \"%s\"." @@ -76,7 +76,7 @@ msgstr "A ZIP-letöltés nincs engedélyezve." msgid "Files need to be downloaded one by one." msgstr "A fájlokat egyenként kell letölteni." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Vissza a Fájlokhoz" @@ -150,15 +150,15 @@ msgstr "Nem lehetett létrehozni az alkalmzás mappáját. Kérlek ellenőrizd a msgid "Application is not enabled" msgstr "Az alkalmazás nincs engedélyezve" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Azonosítási hiba" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "A token lejárt. Frissítse az oldalt." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -287,73 +287,171 @@ msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmu msgid "%s shared »%s« with you" msgstr "%s megosztotta Önnel ezt: »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Ez a kategória nem található: \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "pár másodperce" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n perccel ezelőtt" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n órával ezelőtt" msgstr[1] "%n órával ezelőtt" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ma" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "tegnap" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n nappal ezelőtt" msgstr[1] "%n nappal ezelőtt" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "múlt hónapban" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n hónappal ezelőtt" msgstr[1] "%n hónappal ezelőtt" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "tavaly" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "több éve" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Ez a bejelentkezési név már foglalt" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index d62bc683e0c..3b3b5ffa6be 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index c6eea0497d2..d0be345d97a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Usatores" msgid "Admin" msgstr "Administration" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index edf2ae28a7e..18118cf1fec 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Pengguna" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Gagal memperbarui \"%s\"." @@ -73,7 +73,7 @@ msgstr "Pengunduhan ZIP dimatikan." msgid "Files need to be downloaded one by one." msgstr "Berkas harus diunduh satu persatu." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Kembali ke Berkas" @@ -147,15 +147,15 @@ msgstr "Tidak dapat membuat folder apl. Silakan perbaiki perizinan. %s" msgid "Application is not enabled" msgstr "Aplikasi tidak diaktifkan" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Galat saat otentikasi" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token sudah kedaluwarsa. Silakan muat ulang halaman." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "Silakan periksa ulang panduan instalasi." msgid "%s shared »%s« with you" msgstr "%s membagikan »%s« dengan anda" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Tidak menemukan kategori \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n menit yang lalu" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n jam yang lalu" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hari ini" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "kemarin" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n hari yang lalu" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "bulan kemarin" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n bulan yang lalu" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "tahun kemarin" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "beberapa tahun lalu" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Tuliskan nama pengguna yang valid" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Tuliskan sandi yang valid" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 24dba8ecb24..2bc042e6fe8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Notendur" msgid "Admin" msgstr "Stjórnun" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Slökkt á ZIP niðurhali." msgid "Files need to be downloaded one by one." msgstr "Skrárnar verður að sækja eina og eina" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Aftur í skrár" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Forrit ekki virkt" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Villa við auðkenningu" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Auðkenning útrunnin. Vinsamlegast skráðu þig aftur inn." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Fann ekki flokkinn \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sek." -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "í dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "í gær" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "síðasta mánuði" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "síðasta ári" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "einhverjum árum" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/it/files.po b/l10n/it/files.po index 487dde50100..f7579891b10 100644 --- a/l10n/it/files.po +++ b/l10n/it/files.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# idetao , 2014 # Paolo Velati , 2013-2014 # Vincenzo Reale , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 23:33+0000\n" +"Last-Translator: idetao \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" @@ -179,7 +180,7 @@ msgstr "L'URL non può essere vuoto." msgid "In the home folder 'Shared' is a reserved filename" msgstr "Nella cartella home 'Shared' è un nome riservato" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} esiste già" @@ -215,35 +216,35 @@ msgstr "Errore durante lo spostamento del file" msgid "Error" msgstr "Errore" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "In corso" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Impossibile rinominare il file" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Errore durante l'eliminazione del file." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n file" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Caricamento di %n file in corso" @@ -310,7 +311,7 @@ msgstr "%s non può essere rinominato" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Carica (massimo %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 7de4b24e4d4..61cf71193af 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 22:37+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Utenti" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." @@ -77,7 +77,7 @@ msgstr "Lo scaricamento in formato ZIP è stato disabilitato." msgid "Files need to be downloaded one by one." msgstr "I file devono essere scaricati uno alla volta." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Torna ai file" @@ -151,15 +151,15 @@ msgstr "Impossibile creare la cartella dell'applicazione. Correggi i permessi. % msgid "Application is not enabled" msgstr "L'applicazione non è abilitata" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Errore di autenticazione" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token scaduto. Ricarica la pagina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Utente sconosciuto" @@ -288,73 +288,171 @@ msgstr "Leggi attentamente le guide d'installazione." msgid "%s shared »%s« with you" msgstr "%s ha condiviso «%s» con te" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Impossibile trovare la categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "secondi fa" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuto fa" msgstr[1] "%n minuti fa" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n ora fa" msgstr[1] "%n ore fa" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "oggi" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ieri" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n giorno fa" msgstr[1] "%n giorni fa" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mese scorso" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n mese fa" msgstr[1] "%n mesi fa" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "anno scorso" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "anni fa" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Solo i seguenti caratteri sono ammessi in un nome utente: \"a-z\", \"A-Z\", \"0-9\", e \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Il nome utente è già utilizzato" diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 13bbcdee323..520335ddac5 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -4,16 +4,16 @@ # # Translators: # Francesco Apruzzese , 2013 -# idetao , 2013 +# idetao , 2013-2014 # Paolo Velati , 2013-2014 # Vincenzo Reale , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 23:31+0000\n" +"Last-Translator: idetao \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" @@ -525,7 +525,7 @@ msgstr "Consenti le notifiche tramite posta elettronica" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Consenti agli utenti di mandare e-mail di notifica per i file condivisi" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index 44361df0669..9a1364fed7c 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -53,7 +53,7 @@ msgstr "ユーザー" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" へのアップグレードに失敗しました。" @@ -78,7 +78,7 @@ msgstr "ZIPダウンロードは無効です。" msgid "Files need to be downloaded one by one." msgstr "ファイルは1つずつダウンロードする必要があります。" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "ファイルに戻る" @@ -152,15 +152,15 @@ msgstr "アプリフォルダーを作成できませんでした。%s のパー msgid "Application is not enabled" msgstr "アプリケーションは無効です" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "認証エラー" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "トークンが無効になりました。ページを再読込してください。" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "不明なユーザー" @@ -289,69 +289,167 @@ msgstr "インストールガイドをよく確認してくだ msgid "%s shared »%s« with you" msgstr "%sが あなたと »%s«を共有しました" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "カテゴリ \"%s\" が見つかりませんでした" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "数秒前" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分前" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 時間前" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今日" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "1日前" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n日前" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "1ヶ月前" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%nヶ月前" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "1年前" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "年前" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "有効なユーザー名を指定する必要があります" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "ユーザ名はすでに使われています" diff --git a/l10n/jv/lib.po b/l10n/jv/lib.po index da7f24790c3..0915bb223d3 100644 --- a/l10n/jv/lib.po +++ b/l10n/jv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index d6c36f3cf5a..b7d235cf31c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "მომხმარებელი" msgid "Admin" msgstr "ადმინისტრატორი" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP download–ი გათიშულია" msgid "Files need to be downloaded one by one." msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "უკან ფაილებში" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "აპლიკაცია არ არის აქტიური" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "ავთენტიფიკაციის შეცდომა" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token–ს ვადა გაუვიდა. გთხოვთ განაახლოთ გვერდი." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "გთხოვთ გადაათვალიეროთ 설치 가이드를 다시 한 번 확인하십시오." msgid "%s shared »%s« with you" msgstr "%s 님이 %s을(를) 공유하였습니다" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "분류 \"%s\"을(를) 찾을 수 없습니다." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "초 전" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n분 전 " -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n시간 전 " -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "오늘" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "어제" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n일 전 " -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "지난 달" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n달 전 " -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "작년" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "년 전" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "올바른 사용자 이름을 입력해야 함" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "올바른 암호를 입력해야 함" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index eab0771ad84..9f9aa8fd223 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "به‌كارهێنه‌ر" msgid "Admin" msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 403353e5beb..392bc813a98 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Benotzer" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authentifikatioun's Fehler" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,73 +285,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "Den/D' %s huet »%s« mat dir gedeelt" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Sekonnen hir" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n Minutten hir" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "haut" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "gëschter" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "Läschte Mount" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "Läscht Joer" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "Joren hier" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 58ff50b54f6..1dde1d9c2d9 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -52,7 +52,7 @@ msgstr "Vartotojai" msgid "Admin" msgstr "Administravimas" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Nepavyko pakelti „%s“ versijos." @@ -77,7 +77,7 @@ msgstr "ZIP atsisiuntimo galimybė yra išjungta." msgid "Files need to be downloaded one by one." msgstr "Failai turi būti parsiunčiami vienas po kito." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Atgal į Failus" @@ -151,15 +151,15 @@ msgstr "Nepavyksta sukurti aplanko. Prašome pataisyti leidimus. %s" msgid "Application is not enabled" msgstr "Programa neįjungta" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentikacijos klaida" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Sesija baigėsi. Prašome perkrauti puslapį." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -288,77 +288,175 @@ msgstr "Prašome pažiūrėkite dar kartą diegimo instrukcijas msgid "%s shared »%s« with you" msgstr "%s pasidalino »%s« su tavimi" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nepavyko rasti kategorijos „%s“" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "prieš sekundę" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "prieš %n min." msgstr[1] "Prieš % minutes" msgstr[2] "Prieš %n minučių" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Prieš %n valandą" msgstr[1] "Prieš %n valandas" msgstr[2] "Prieš %n valandų" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "šiandien" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "vakar" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "Prieš %n dieną" msgstr[1] "Prieš %n dienas" msgstr[2] "Prieš %n dienų" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "praeitą mėnesį" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Prieš %n mėnesį" msgstr[1] "Prieš %n mėnesius" msgstr[2] "Prieš %n mėnesių" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "praeitais metais" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "prieš metus" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Vartotojo vardas turi būti tinkamas" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Slaptažodis turi būti tinkamas" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 5a8a9d5813b..7a7d03523e8 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Lietotāji" msgid "Admin" msgstr "Administratori" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Kļūda atjauninot \"%s\"" @@ -74,7 +74,7 @@ msgstr "ZIP lejupielādēšana ir izslēgta." msgid "Files need to be downloaded one by one." msgstr "Datnes var lejupielādēt tikai katru atsevišķi." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Atpakaļ pie datnēm" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Lietotne nav aktivēta" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentifikācijas kļūda" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Pilnvarai ir beidzies termiņš. Lūdzu, pārlādējiet lapu." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,77 +285,175 @@ msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību msgid "%s shared »%s« with you" msgstr "%s kopīgots »%s« ar jums" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nevarēja atrast kategoriju “%s”" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n minūtēm" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n stundām" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "šodien" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "vakar" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n dienām" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "pagājušajā mēnesī" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Pirms %n mēnešiem" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "gājušajā gadā" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "gadus atpakaļ" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Jānorāda derīgs lietotājvārds" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Šāds lietotājvārds jau tiek izmantots" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index c611a9b9d0d..ab88decb08d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Корисници" msgid "Admin" msgstr "Админ" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Преземање во ZIP е исклучено" msgid "Files need to be downloaded one by one." msgstr "Датотеките треба да се симнат една по една." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад кон датотеки" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Апликацијата не е овозможена" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Грешка во автентикација" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Жетонот е истечен. Ве молам превчитајте ја страницата." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не можам да најдам категорија „%s“" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "пред секунди" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "денеска" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "вчера" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "минатиот месец" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "минатата година" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "пред години" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Мора да се обезбеди валидно корисничко име " -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Мора да се обезбеди валидна лозинка" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ml/lib.po b/l10n/ml/lib.po index 7d8386a4852..9b18b8c069e 100644 --- a/l10n/ml/lib.po +++ b/l10n/ml/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index ad9148fab33..e2d3ce261cf 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/mn/lib.po b/l10n/mn/lib.po index 24f3d3b50df..0ba562d4874 100644 --- a/l10n/mn/lib.po +++ b/l10n/mn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 0d63f98d966..a8145ee4dfc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Pengguna" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Ralat pengesahan" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 69bc9a0a977..ab59c1e32b5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "သုံးစွဲသူ" msgid "Admin" msgstr "အက်ဒမင်" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည msgid "Files need to be downloaded one by one." msgstr "ဖိုင်များသည် တစ်ခုပြီး တစ်ခုဒေါင်းလုတ်ချရန်လိုအပ်သည်" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "ဖိုင်သို့ပြန်သွားမည်" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "ခွင့်ပြုချက်မအောင်မြင်" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ယနေ့" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "မနေ့က" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "မနှစ်က" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "နှစ် အရင်က" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 896430174f2..f799a36058a 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Brukere" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Klarte ikke å oppgradere \"%s\"." @@ -75,7 +75,7 @@ msgstr "ZIP-nedlasting av avslått" msgid "Files need to be downloaded one by one." msgstr "Filene må lastes ned en om gangen" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tilbake til filer" @@ -149,15 +149,15 @@ msgstr "Kan ikke opprette app-mappe. Vennligst ordne opp i tillatelser. %s" msgid "Application is not enabled" msgstr "Applikasjon er ikke påslått" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Autentikasjonsfeil" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Symbol utløpt. Vennligst last inn siden på nytt." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,73 +286,171 @@ msgstr "Vennligst dobbelsjekk installasjonsguiden." msgid "%s shared »%s« with you" msgstr "%s delte »%s« med deg" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunne ikke finne kategori \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekunder siden" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutter siden" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n timer siden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dager siden" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "forrige måned" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n dager siden" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "forrige år" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år siden" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Oppgi et gyldig brukernavn" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Oppgi et gyldig passord" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po index 7f0a19e84b6..b7c0c86c549 100644 --- a/l10n/nds/lib.po +++ b/l10n/nds/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index e310cb1d413..702c6f532fc 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 4a28f3f9cec..0de22186029 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 19:18+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -179,7 +179,7 @@ msgstr "URL mag niet leeg zijn" msgid "In the home folder 'Shared' is a reserved filename" msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" @@ -215,35 +215,35 @@ msgstr "Fout bij verplaatsen bestand" msgid "Error" msgstr "Fout" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Kon niet hernoemen bestand" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Fout bij verwijderen bestand." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n bestanden" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} en {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n bestand aan het uploaden" @@ -310,7 +310,7 @@ msgstr "%s kon niet worden hernoemd" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Upload (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 35171905f80..1e135da68df 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-11 01:54-0400\n" -"PO-Revision-Date: 2014-04-10 06:50+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -51,7 +51,7 @@ msgstr "Gebruikers" msgid "Admin" msgstr "Beheerder" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgrade \"%s\" mislukt." @@ -76,7 +76,7 @@ msgstr "ZIP download is uitgeschakeld." msgid "Files need to be downloaded one by one." msgstr "Bestanden moeten één voor één worden gedownload." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Terug naar bestanden" @@ -150,15 +150,15 @@ msgstr "Kan de app map niet aanmaken, Herstel de permissies. %s" msgid "Application is not enabled" msgstr "De applicatie is niet actief" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Authenticatie fout" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token verlopen. Herlaad de pagina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Onbekende gebruiker" @@ -287,73 +287,171 @@ msgstr "Controleer de installatiehandleiding goed." msgid "%s shared »%s« with you" msgstr "%s deelde »%s« met jou" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kon categorie \"%s\" niet vinden" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "seconden geleden" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minuut geleden" msgstr[1] "%n minuten geleden" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n uur geleden" msgstr[1] "%n uur geleden" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "vandaag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "gisteren" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag terug" msgstr[1] "%n dagen geleden" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "vorige maand" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n maand geleden" msgstr[1] "%n maanden geleden" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "vorig jaar" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "jaar geleden" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Alleen de volgende tekens zijn toegestaan in een gebruikersnaam: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "De gebruikersnaam bestaat al" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index aa5c19bc229..9fa5da4d6cc 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 19:18+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -525,7 +525,7 @@ msgstr "Toestaan e-mailnotificaties" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 5f7f37471b4..09e48965bb6 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Brukarar" msgid "Admin" msgstr "Administrer" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -75,7 +75,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -149,15 +149,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Feil i autentisering" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,73 +286,171 @@ msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." msgid "%s shared »%s« with you" msgstr "%s delte «%s» med deg" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekund sidan" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutt sidan" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n timar sidan" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dagar sidan" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "førre månad" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n månadar sidan" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "i fjor" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år sidan" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Du må oppgje eit gyldig brukarnamn" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Du må oppgje eit gyldig passord" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index 0571ed36a4e..f59370d050f 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 7883c2348cd..121200c85c8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Usancièrs" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Avalcargar los ZIP es inactiu." msgid "Files need to be downloaded one by one." msgstr "Los fichièrs devan èsser avalcargats un per un." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Torna cap als fichièrs" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Error d'autentificacion" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "segonda a" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "uèi" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ièr" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "mes passat" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "an passat" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ans a" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/or_IN/lib.po b/l10n/or_IN/lib.po index b8ef391b221..495eae5b05d 100644 --- a/l10n/or_IN/lib.po +++ b/l10n/or_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-22 22:46+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -284,6 +284,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index cc8806e357e..2f059f913e0 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "ਸਕਿੰਟ ਪਹਿਲਾਂ" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ਅੱਜ" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ਕੱਲ੍ਹ" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ਪਿਛਲੇ ਮਹੀਨੇ" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ਪਿਛਲੇ ਸਾਲ" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ਸਾਲਾਂ ਪਹਿਲਾਂ" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 972f9bcf32d..2730643a33d 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10:34+0000\n" +"Last-Translator: bobie \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" @@ -183,7 +183,7 @@ msgstr "URL nie może być pusty" msgid "In the home folder 'Shared' is a reserved filename" msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" @@ -219,37 +219,37 @@ msgstr "Błąd prz przenoszeniu pliku" msgid "Error" msgstr "Błąd" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Nie można zmienić nazwy pliku" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Błąd podczas usuwania pliku" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" msgstr[1] "%n pliki" msgstr[2] "%n plików" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Wysyłanie %n pliku" @@ -317,7 +317,7 @@ msgstr "%s nie można zmienić nazwy" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Wysyłka (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 35e7c37ef0a..87fb61c2dcd 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 10:53+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Użytkownicy" msgid "Admin" msgstr "Administrator" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Błąd przy aktualizacji \"%s\"." @@ -75,7 +75,7 @@ msgstr "Pobieranie ZIP jest wyłączone." msgid "Files need to be downloaded one by one." msgstr "Pliki muszą zostać pobrane pojedynczo." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Wróć do plików" @@ -149,15 +149,15 @@ msgstr "Nie mogę utworzyć katalogu aplikacji. Proszę popraw uprawnienia. %s" msgid "Application is not enabled" msgstr "Aplikacja nie jest włączona" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Błąd uwierzytelniania" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token wygasł. Proszę ponownie załadować stronę." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Nieznany użytkownik" @@ -286,77 +286,175 @@ msgstr "Sprawdź ponownie przewodniki instalacji." msgid "%s shared »%s« with you" msgstr "%s Współdzielone »%s« z tobą" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nie można odnaleźć kategorii \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekund temu" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute temu" msgstr[1] "%n minut temu" msgstr[2] "%n minut temu" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n godzinę temu" msgstr[1] "%n godzin temu" msgstr[2] "%n godzin temu" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "dziś" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "wczoraj" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dzień temu" msgstr[1] "%n dni temu" msgstr[2] "%n dni temu" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "w zeszłym miesiącu" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n miesiąc temu" msgstr[1] "%n miesięcy temu" msgstr[2] "%n miesięcy temu" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "w zeszłym roku" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "lat temu" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "W nazwach użytkowników dozwolone są wyłącznie następujące znaki: \"a-z\", \"A-Z\", \"0-9\", oraz \"_.@-\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Ta nazwa użytkownika jest już używana" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 8af3733a05f..26e58d91c70 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 10:34+0000\n" +"Last-Translator: bobie \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" @@ -524,7 +524,7 @@ msgstr "Pozwól na mailowe powiadomienia" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index 1d25159e22c..42291ff3891 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:31+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" @@ -180,7 +180,7 @@ msgstr "URL não pode estar vazia" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} já existe" @@ -216,35 +216,35 @@ msgstr "Erro movendo o arquivo" msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Não foi possível renomear o arquivo" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Erro eliminando o arquivo." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" msgstr[1] "%n arquivos" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Enviando %n arquivo" @@ -311,7 +311,7 @@ msgstr "%s não pode ser renomeado" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Envio (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 5f8c4597d97..de90637bce0 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-22 16:40+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -285,6 +285,104 @@ msgstr "Por favor, confira os guias de instalação." msgid "%s shared »%s« with you" msgstr "%s compartilhou »%s« com você" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 4b4186a1d06..35c10ae2ebd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:31+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" @@ -523,7 +523,7 @@ msgstr "Permitir notificação por email" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Permitir aos usuários enviar notificação de email para arquivos compartilhados" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index e8a0c4927da..ab8309c2a07 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -51,7 +51,7 @@ msgstr "Utilizadores" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." @@ -76,7 +76,7 @@ msgstr "Descarregamento em ZIP está desligado." msgid "Files need to be downloaded one by one." msgstr "Os ficheiros precisam de ser descarregados um por um." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Voltar a Ficheiros" @@ -150,15 +150,15 @@ msgstr "Não foi possível criar a pasta da aplicação. Por favor verifique as msgid "Application is not enabled" msgstr "A aplicação não está activada" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Erro na autenticação" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "O token expirou. Por favor recarregue a página." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Utilizador desconhecido" @@ -287,73 +287,171 @@ msgstr "Por favor verifique installation guides." msgid "%s shared »%s« with you" msgstr "%s partilhado »%s« contigo" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Não foi encontrado a categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Minutos atrás" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minutos atrás" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n horas atrás" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hoje" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ontem" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n dias atrás" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ultímo mês" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n meses atrás" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ano passado" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "anos atrás" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 6beeb527615..6ec7ba546ef 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -49,7 +49,7 @@ msgstr "Utilizatori" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -74,7 +74,7 @@ msgstr "Descărcarea ZIP este dezactivată." msgid "Files need to be downloaded one by one." msgstr "Fișierele trebuie descărcate unul câte unul." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Înapoi la fișiere" @@ -148,15 +148,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Aplicația nu este activată" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Eroare la autentificare" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token expirat. Te rugăm să reîncarci pagina." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -285,77 +285,175 @@ msgstr "Vă rugăm să verificați ghiduri de instalare." msgid "%s shared »%s« with you" msgstr "%s Partajat »%s« cu tine de" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Cloud nu a gasit categoria \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "secunde în urmă" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n minute" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n ore" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "astăzi" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ieri" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "acum %n zile" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "ultima lună" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ultimul an" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ani în urmă" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Trebuie să furnizaţi un nume de utilizator valid" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Trebuie să furnizaţi o parolă validă" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index f59ffd70fa5..379364d97a5 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -55,7 +55,7 @@ msgstr "Пользователи" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Не смог обновить \"%s\"." @@ -80,7 +80,7 @@ msgstr "ZIP-скачивание отключено." msgid "Files need to be downloaded one by one." msgstr "Файлы должны быть загружены по одному." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад к файлам" @@ -154,15 +154,15 @@ msgstr "Не удалось создать директорию. Исправь msgid "Application is not enabled" msgstr "Приложение не разрешено" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Ошибка аутентификации" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Токен просрочен. Перезагрузите страницу." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -291,77 +291,175 @@ msgstr "Пожалуйста, дважды просмотрите msgid "%s shared »%s« with you" msgstr "%s поделился »%s« с вами" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Категория \"%s\" не найдена" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "несколько секунд назад" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n минута назад" msgstr[1] "%n минуты назад" msgstr[2] "%n минут назад" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n час назад" msgstr[1] "%n часа назад" msgstr[2] "%n часов назад" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "сегодня" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "вчера" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n день назад" msgstr[1] "%n дня назад" msgstr[2] "%n дней назад" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "в прошлом месяце" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n месяц назад" msgstr[1] "%n месяца назад" msgstr[2] "%n месяцев назад" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "в прошлом году" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "несколько лет назад" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Укажите правильное имя пользователя" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Укажите валидный пароль" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 5307a86f2fb..cc3a48c0152 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "පරිශීලකයන්" msgid "Admin" msgstr "පරිපාලක" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP භාගත කිරීම් අක්‍රියයි" msgid "Files need to be downloaded one by one." msgstr "ගොනු එකින් එක භාගත යුතුයි" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "ගොනු වෙතට නැවත යන්න" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "යෙදුම සක්‍රිය කර නොමැත" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "සත්‍යාපන දෝෂයක්" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "ටෝකනය කල් ඉකුත් වී ඇත. පිටුව නැවුම් කරන්න" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "අද" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "ඊයේ" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "පෙර මාසයේ" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 56224c08da5..4e039dc17ae 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 10d44986712..8b3d08256f6 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "Používatelia" msgid "Admin" msgstr "Administrátor" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Zlyhala aktualizácia \"%s\"." @@ -75,7 +75,7 @@ msgstr "Sťahovanie súborov ZIP je vypnuté." msgid "Files need to be downloaded one by one." msgstr "Súbory musia byť nahrávané jeden za druhým." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Späť na súbory" @@ -149,15 +149,15 @@ msgstr "Nemožno vytvoriť aplikačný priečinok. Prosím upravte povolenia. %s msgid "Application is not enabled" msgstr "Aplikácia nie je zapnutá" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Chyba autentifikácie" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token vypršal. Obnovte, prosím, stránku." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Neznámy používateľ" @@ -286,77 +286,175 @@ msgstr "Prosím skontrolujte inštalačnú príručku." msgid "%s shared »%s« with you" msgstr "%s s vami zdieľa »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Nemožno nájsť danú kategóriu \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "pred sekundami" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "pred %n minútou" msgstr[1] "pred %n minútami" msgstr[2] "pred %n minútami" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "pred %n hodinou" msgstr[1] "pred %n hodinami" msgstr[2] "pred %n hodinami" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "dnes" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "včera" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "pred %n dňom" msgstr[1] "pred %n dňami" msgstr[2] "pred %n dňami" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "minulý mesiac" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "pred %n mesiacom" msgstr[1] "pred %n mesiacmi" msgstr[2] "pred %n mesiacmi" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "minulý rok" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "pred rokmi" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Musíte zadať platné používateľské meno" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index fd0b2af9f9e..46cd7f25c69 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 16:38+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -286,6 +286,104 @@ msgstr "Preverite navodila namestitve." msgid "%s shared »%s« with you" msgstr "%s je omogočil souporabo »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 1e227ddd183..bd165498149 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Përdoruesit" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." msgid "Files need to be downloaded one by one." msgstr "Skedarët duhet të shkarkohen një nga një." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Kthehu tek skedarët" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Programi nuk është i aktivizuar." -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Veprim i gabuar gjatë vërtetimit të identitetit" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Përmbajtja ka skaduar. Ju lutemi ringarkoni faqen." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." msgid "%s shared »%s« with you" msgstr "%s ndau »%s« me ju" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kategoria \"%s\" nuk u gjet" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekonda më parë" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n minuta më parë" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n orë më parë" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "sot" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "dje" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n ditë më parë" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "muajin e shkuar" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n muaj më parë" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "vitin e shkuar" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "vite më parë" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Duhet të jepni një emër të vlefshëm përdoruesi" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Duhet të jepni një fjalëkalim te vlefshëm" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 9cd072c745e..fb962337e4e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Корисници" msgid "Admin" msgstr "Администратор" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Преузимање ZIP-а је искључено." msgid "Files need to be downloaded one by one." msgstr "Датотеке морате преузимати једну по једну." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Назад на датотеке" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Апликација није омогућена" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Грешка при провери идентитета" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Жетон је истекао. Поново учитајте страницу." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "Погледајте водиче за инсталациј msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не могу да пронађем категорију „%s“." -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "пре неколико секунди" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "данас" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "јуче" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "прошлог месеца" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "прошле године" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "година раније" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Морате унети исправно корисничко име" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Морате унети исправну лозинку" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 0f3d0d7a092..2cfe024582e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Korisnici" msgid "Admin" msgstr "Adninistracija" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Greška pri autentifikaciji" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "Pre par sekundi" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "Danas" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "juče" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "Prije %n dana." -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "prošlog meseca" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "prošle godine" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "pre nekoliko godina" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/su/lib.po b/l10n/su/lib.po index 9d0019b5f50..4d3929c27cc 100644 --- a/l10n/su/lib.po +++ b/l10n/su/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 3516cdfdd77..cb9a685d2a4 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 11:20+0000\n" -"Last-Translator: henrikhjelm \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -55,7 +55,7 @@ msgstr "Användare" msgid "Admin" msgstr "Admin" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." @@ -80,7 +80,7 @@ msgstr "Nerladdning av ZIP är avstängd." msgid "Files need to be downloaded one by one." msgstr "Filer laddas ner en åt gången." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Tillbaka till Filer" @@ -154,15 +154,15 @@ msgstr "Kan inte skapa appens mapp. Var god åtgärda rättigheterna. %s" msgid "Application is not enabled" msgstr "Applikationen är inte aktiverad" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Fel vid autentisering" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Ogiltig token. Ladda om sidan." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "Okänd användare" @@ -291,73 +291,171 @@ msgstr "Var god kontrollera installationsguiden." msgid "%s shared »%s« with you" msgstr "%s delade »%s« med dig" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Kunde inte hitta kategorin \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "sekunder sedan" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "i dag" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "i går" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "förra månaden" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "förra året" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "år sedan" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "Endast följande tecken är tillåtna i ett användarnamn: \"az\", \"AZ\", \"0-9\", och \"_ @ -.\"" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Ett giltigt användarnamn måste anges" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "Användarnamnet används redan" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index b607d2dedb0..8de71859915 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 96e0bc2c2a1..0cff9cc46f5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "பயனாளர்" msgid "Admin" msgstr "நிர்வாகம்" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "வீசொலிப் பூட்டு பதிவிறக்க msgid "Files need to be downloaded one by one." msgstr "கோப்புகள்ஒன்றன் பின் ஒன்றாக பதிவிறக்கப்படவேண்டும்." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "கோப்புகளுக்கு செல்க" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "செயலி இயலுமைப்படுத்தப்படவில்லை" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "அத்தாட்சிப்படுத்தலில் வழு" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "அடையாளவில்லை காலாவதியாகிவிட்டது. தயவுசெய்து பக்கத்தை மீள் ஏற்றுக." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "இன்று" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "நேற்று" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "கடந்த மாதம்" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "கடந்த வருடம்" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "வருடங்களுக்கு முன்" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 9428875f4e6..97177c36dc8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "వాడుకరులు" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "%n నిమిషాల క్రితం" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "%n గంటల క్రితం" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "ఈరోజు" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "నిన్న" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "%n రోజుల క్రితం" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "పోయిన నెల" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "%n నెలల క్రితం" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "సంవత్సరాల క్రితం" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 21a80481792..3b379726b27 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -135,59 +135,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "" -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index ea124e27fe9..9098867f339 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -177,7 +177,7 @@ msgstr "" msgid "In the home folder 'Shared' is a reserved filename" msgstr "" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "" @@ -213,35 +213,35 @@ msgstr "" msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index f0dd2975cce..7777b79c596 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\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 f7b5e4e305e..4249671016e 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\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 a20e27c699a..1ceb58b2d12 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\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 d3fab126a28..dc188cbf798 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\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 dc51b390525..3fbca2717bf 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\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 79fd7165e69..142859181db 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -285,6 +285,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s " +"is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index c293e6187a7..d9c628a1c54 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -277,6 +277,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s " +"is a member of" +msgstr "" + +#: share/share.php:518 share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: tags.php:193 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index f52f3d53d70..ed8bfbf1efa 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\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 50f8114aafa..95200b23de7 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -87,43 +87,43 @@ msgstr "" msgid "Error" msgstr "" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "" @@ -145,7 +145,7 @@ msgstr[1] "" msgid "Invalid Host" msgstr "" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index a6d99051683..ae637283fc6 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\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/lib.po b/l10n/th_TH/lib.po index fcd4bbd24b9..d11c284a776 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "ผู้ใช้งาน" msgid "Admin" msgstr "ผู้ดูแล" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "คุณสมบัติการดาวน์โหลด zip ถ msgid "Files need to be downloaded one by one." msgstr "ไฟล์สามารถดาวน์โหลดได้ทีละครั้งเท่านั้น" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "กลับไปที่ไฟล์" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "แอพพลิเคชั่นดังกล่าวยังไม่ได้เปิดใช้งาน" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "รหัสยืนยันความถูกต้องหมดอายุแล้ว กรุณาโหลดหน้าเว็บใหม่อีกครั้ง" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "ไม่พบหมวดหมู่ \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "วันนี้" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "เมื่อวานนี้" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "เดือนที่แล้ว" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "ปีที่แล้ว" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "ปี ที่ผ่านมา" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index f25ab1e0b98..3c8d0e87220 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:00+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" @@ -138,59 +138,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Kaydediliyor..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "saniyeler önce" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n dakika önce" msgstr[1] "%n dakika önce" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n saat önce" msgstr[1] "%n saat önce" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "bugün" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "dün" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n gün önce" msgstr[1] "%n gün önce" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "geçen ay" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n ay önce" msgstr[1] "%n ay önce" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "geçen yıl" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "yıllar önce" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index 67cdf2e53d5..5228d98bdbe 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:00+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -182,7 +182,7 @@ msgstr "URL boş olamaz" msgid "In the home folder 'Shared' is a reserved filename" msgstr "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır" -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:561 js/filelist.js:586 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" @@ -218,35 +218,35 @@ msgstr "Dosya taşıma hatası" msgid "Error" msgstr "Hata" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:251 js/filelist.js:1130 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:612 +#: js/filelist.js:613 msgid "Could not rename file" msgstr "Dosya adlandırılamadı" -#: js/filelist.js:775 +#: js/filelist.js:776 msgid "Error deleting file." msgstr "Dosya silinirken hata." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" msgstr[1] "%n dosya" -#: js/filelist.js:808 +#: js/filelist.js:809 msgid "{dirs} and {files}" msgstr "{dirs} ve {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1038 js/filelist.js:1077 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n dosya yükleniyor" @@ -313,7 +313,7 @@ msgstr "%s yeniden adlandırılamadı" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Yükle (azami: %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index d8048f25bd3..c70944abd19 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-22 01:54-0400\n" -"PO-Revision-Date: 2014-04-21 13:52+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\ #: private/app.php:248 msgid "No app name specified" -msgstr "Uygulama adı belirtimedli" +msgstr "Uygulama adı belirtilmedi" #: private/app.php:353 msgid "Help" @@ -75,11 +75,11 @@ msgstr "ZIP indirmeleri kapatıldı." #: private/files.php:233 msgid "Files need to be downloaded one by one." -msgstr "Dosyaların birer birer indirilmesi gerekmektedir." +msgstr "Dosyaların tek tek indirilmesi gerekmektedir." #: private/files.php:234 private/files.php:261 msgid "Back to Files" -msgstr "Dosyalara dön" +msgstr "Dosyalara Dön" #: private/files.php:259 msgid "Selected files too large to generate zip file." @@ -199,7 +199,7 @@ msgstr "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s" #: private/setup/oci.php:114 private/setup/postgresql.php:31 #: private/setup/postgresql.php:84 msgid "You need to enter either an existing account or the administrator." -msgstr "Siz veya yönetici mevcut bir hesap girmeli." +msgstr "Mevcut bit hesap ya da yönetici hesabını girmelisiniz." #: private/setup/mysql.php:12 msgid "MySQL/MariaDB username and/or password not valid" @@ -244,7 +244,7 @@ msgstr "MySQL/MariaDB kullanıcısı '%s'@'%%' zaten mevcut" #: private/setup/mysql.php:92 msgid "Drop this user from MySQL/MariaDB." -msgstr "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)" +msgstr "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)." #: private/setup/oci.php:34 msgid "Oracle connection could not be established" @@ -275,7 +275,7 @@ msgstr "Bir yönetici kullanıcı parolası ayarlayın." msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor." +msgstr "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor." #: private/setup.php:203 #, php-format @@ -288,6 +288,104 @@ msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." msgid "%s shared »%s« with you" msgstr "%s sizinle »%s« paylaşımında bulundu" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" @@ -339,7 +437,7 @@ msgstr "geçen yıl" #: private/template/functions.php:146 msgid "years ago" -msgstr "yıl önce" +msgstr "yıllar önce" #: private/user/manager.php:232 msgid "" diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index f5e4733f403..2b6aae69911 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-23 11:10+0000\n" +"Last-Translator: volkangezer \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -65,7 +65,7 @@ msgstr "Kimlik doğrulama yöntemi" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "App Store'dan liste yüklenemiyor" +msgstr "Uygulama Mağazasın'dan liste yüklenemiyor" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 changepassword/controller.php:49 @@ -378,7 +378,7 @@ msgstr "Kurulum Uyarısı" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor." +msgstr "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor." #: templates/admin.php:79 #, php-format @@ -525,7 +525,7 @@ msgstr "Posta bilgilendirmesine izin ver" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" -msgstr "" +msgstr "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver" #: templates/admin.php:261 msgid "Security" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index 70663f6f817..d90cda5f055 100644 --- a/l10n/tzm/lib.po +++ b/l10n/tzm/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 49eec14adb2..3409a80517e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "ئىشلەتكۈچىلەر" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "سالاھىيەت دەلىللەش خاتالىقى" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "بۈگۈن" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "تۈنۈگۈن" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىشلەتكۈچى ئىسمىدىن بىرنى تەمىنلەش كېرەك" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "چوقۇم ئىناۋەتلىك ئىم تەمىنلەش كېرەك" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 5724656194a..598c9e7f493 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Користувачі" msgid "Admin" msgstr "Адмін" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "ZIP завантаження вимкнено." msgid "Files need to be downloaded one by one." msgstr "Файли повинні бути завантаженні послідовно." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Повернутися до файлів" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Додаток не увімкнений" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Помилка автентифікації" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Строк дії токена скінчився. Будь ласка, перезавантажте сторінку." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,77 +284,175 @@ msgstr "Будь ласка, перевірте інструкці msgid "%s shared »%s« with you" msgstr "%s розподілено »%s« з тобою" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "Не вдалося знайти категорію \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "секунди тому" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n хвилин тому" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n годин тому" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "сьогодні" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "вчора" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n днів тому" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "минулого місяця" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" msgstr[2] "%n місяців тому" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "минулого року" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "роки тому" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "Потрібно задати вірне ім'я користувача" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ur/lib.po b/l10n/ur/lib.po index b21775ce5a5..adb951f6986 100644 --- a/l10n/ur/lib.po +++ b/l10n/ur/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index f06ab498fb2..75e40964d46 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "یوزرز" msgid "Admin" msgstr "ایڈمن" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,73 +284,171 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po index cb9c4b53ca4..e8d5252faf3 100644 --- a/l10n/uz/lib.po +++ b/l10n/uz/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" msgid "Admin" msgstr "" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index e1f9cb7d4c8..b21af741c52 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "Người dùng" msgid "Admin" msgstr "Quản trị" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "Tải về ZIP đã bị tắt." msgid "Files need to be downloaded one by one." msgstr "Tập tin cần phải được tải về từng người một." -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "Trở lại tập tin" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "Ứng dụng không được BẬT" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "Lỗi xác thực" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Mã Token đã hết hạn. Hãy tải lại trang." -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s đã chia sẻ »%s« với bạn" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "không thể tìm thấy mục \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "vài giây trước" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n phút trước" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n giờ trước" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "hôm nay" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "hôm qua" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n ngày trước" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "tháng trước" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n tháng trước" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "năm trước" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "năm trước" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 81c8dfbaedb..0b53e0ef257 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -53,7 +53,7 @@ msgstr "用户" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" 升级失败。" @@ -78,7 +78,7 @@ msgstr "ZIP 下载已经关闭" msgid "Files need to be downloaded one by one." msgstr "需要逐一下载文件" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "回到文件" @@ -152,15 +152,15 @@ msgstr "无法创建应用程序文件夹。请修正权限。%s" msgid "Application is not enabled" msgstr "应用程序未启用" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "认证出错" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token 过期,请刷新页面。" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -289,69 +289,167 @@ msgstr "请认真检查安装指南." msgid "%s shared »%s« with you" msgstr "%s 向您分享了 »%s«" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "无法找到分类 \"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "秒前" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分钟前" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小时前" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今天" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "昨天" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "上月" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 月前" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "去年" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "年前" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "必须提供合法的密码" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 5af2222d381..298b7559192 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -48,7 +48,7 @@ msgstr "用戶" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -73,7 +73,7 @@ msgstr "" msgid "Files need to be downloaded one by one." msgstr "" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "" @@ -147,15 +147,15 @@ msgstr "" msgid "Application is not enabled" msgstr "" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -284,69 +284,167 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今日" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "昨日" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "前一月" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 509f97f58f7..8823dee83c3 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-10 01:54-0400\n" -"PO-Revision-Date: 2014-04-09 06:10+0000\n" +"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 05:54+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" @@ -50,7 +50,7 @@ msgstr "使用者" msgid "Admin" msgstr "管理" -#: private/app.php:875 +#: private/app.php:880 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "升級失敗:%s" @@ -75,7 +75,7 @@ msgstr "ZIP 下載已關閉。" msgid "Files need to be downloaded one by one." msgstr "檔案需要逐一下載。" -#: private/files.php:234 private/files.php:262 +#: private/files.php:234 private/files.php:261 msgid "Back to Files" msgstr "回到檔案列表" @@ -149,15 +149,15 @@ msgstr "無法建立應用程式目錄,請檢查權限:%s" msgid "Application is not enabled" msgstr "應用程式未啟用" -#: private/json.php:40 private/json.php:63 private/json.php:88 +#: private/json.php:40 private/json.php:62 private/json.php:87 msgid "Authentication error" msgstr "認證錯誤" -#: private/json.php:52 +#: private/json.php:51 msgid "Token expired. Please reload page." msgstr "Token 過期,請重新整理頁面。" -#: private/json.php:75 +#: private/json.php:74 msgid "Unknown user" msgstr "" @@ -286,69 +286,167 @@ msgstr "請參考安裝指南。" msgid "%s shared »%s« with you" msgstr "%s 與您分享了 %s" +#: private/share/share.php:490 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "" + +#: private/share/share.php:496 +#, php-format +msgid "Sharing %s failed, because the user %s does not exist" +msgstr "" + +#: private/share/share.php:505 +#, php-format +msgid "" +"Sharing %s failed, because the user %s is not a member of any groups that %s" +" is a member of" +msgstr "" + +#: private/share/share.php:518 private/share/share.php:546 +#, php-format +msgid "Sharing %s failed, because this item is already shared with %s" +msgstr "" + +#: private/share/share.php:526 +#, php-format +msgid "Sharing %s failed, because the group %s does not exist" +msgstr "" + +#: private/share/share.php:533 +#, php-format +msgid "Sharing %s failed, because %s is not a member of the group %s" +msgstr "" + +#: private/share/share.php:596 +#, php-format +msgid "Sharing %s failed, because sharing with links is not allowed" +msgstr "" + +#: private/share/share.php:603 +#, php-format +msgid "Share type %s is not valid for %s" +msgstr "" + +#: private/share/share.php:740 +#, php-format +msgid "" +"Setting permissions for %s failed, because the permissions exceed " +"permissions granted to %s" +msgstr "" + +#: private/share/share.php:801 +#, php-format +msgid "Setting permissions for %s failed, because the item was not found" +msgstr "" + +#: private/share/share.php:895 +#, php-format +msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" +msgstr "" + +#: private/share/share.php:902 +#, php-format +msgid "Sharing backend %s not found" +msgstr "" + +#: private/share/share.php:908 +#, php-format +msgid "Sharing backend for %s not found" +msgstr "" + +#: private/share/share.php:1325 +#, php-format +msgid "Sharing %s failed, because the user %s is the original sharer" +msgstr "" + +#: private/share/share.php:1334 +#, php-format +msgid "" +"Sharing %s failed, because the permissions exceed permissions granted to %s" +msgstr "" + +#: private/share/share.php:1349 +#, php-format +msgid "Sharing %s failed, because resharing is not allowed" +msgstr "" + +#: private/share/share.php:1361 +#, php-format +msgid "" +"Sharing %s failed, because the sharing backend for %s could not find its " +"source" +msgstr "" + +#: private/share/share.php:1375 +#, php-format +msgid "" +"Sharing %s failed, because the file could not be found in the file cache" +msgstr "" + #: private/tags.php:193 #, php-format msgid "Could not find category \"%s\"" msgstr "找不到分類:\"%s\"" -#: private/template/functions.php:133 +#: private/template/functions.php:134 msgid "seconds ago" msgstr "幾秒前" -#: private/template/functions.php:134 +#: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n 分鐘前" -#: private/template/functions.php:135 +#: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n 小時前" -#: private/template/functions.php:136 +#: private/template/functions.php:137 msgid "today" msgstr "今天" -#: private/template/functions.php:137 +#: private/template/functions.php:138 msgid "yesterday" msgstr "昨天" -#: private/template/functions.php:139 +#: private/template/functions.php:140 msgid "%n day go" msgid_plural "%n days ago" msgstr[0] "%n 天前" -#: private/template/functions.php:141 +#: private/template/functions.php:142 msgid "last month" msgstr "上個月" -#: private/template/functions.php:142 +#: private/template/functions.php:143 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n 個月前" -#: private/template/functions.php:144 +#: private/template/functions.php:145 msgid "last year" msgstr "去年" -#: private/template/functions.php:145 +#: private/template/functions.php:146 msgid "years ago" msgstr "幾年前" -#: private/user/manager.php:246 +#: private/user/manager.php:232 msgid "" "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", " "\"0-9\", and \"_.@-\"" msgstr "" -#: private/user/manager.php:251 +#: private/user/manager.php:237 msgid "A valid username must be provided" msgstr "必須提供一個有效的用戶名" -#: private/user/manager.php:255 +#: private/user/manager.php:241 msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" -#: private/user/manager.php:260 +#: private/user/manager.php:246 msgid "The username is already being used" msgstr "" diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 883c7323c0c..f0db728b557 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -67,6 +67,7 @@ $TRANSLATIONS = array( "_%n month ago_::_%n months ago_" => array("","%n kuud tagasi"), "last year" => "viimasel aastal", "years ago" => "aastat tagasi", +"Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Kasutajanimes on lubatud ainult järgnevad tähemärgid: \"a-z\", \"A-Z\", \"0-9\" ja \"_.@-\"", "A valid username must be provided" => "Sisesta nõuetele vastav kasutajatunnus", "A valid password must be provided" => "Sisesta nõuetele vastav parool", "The username is already being used" => "Kasutajanimi on juba kasutuses" diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 0be1c4b186a..c1275da2a72 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -1,7 +1,7 @@ "ownCloud yazılımının bu sürümü ile uyumlu olmadığı için \"%s\" uygulaması kurulamaz.", -"No app name specified" => "Uygulama adı belirtimedli", +"No app name specified" => "Uygulama adı belirtilmedi", "Help" => "Yardım", "Personal" => "Kişisel", "Settings" => "Ayarlar", @@ -12,8 +12,8 @@ $TRANSLATIONS = array( "Invalid image" => "Geçersiz resim", "web services under your control" => "kontrolünüzün altındaki web hizmetleri", "ZIP download is turned off." => "ZIP indirmeleri kapatıldı.", -"Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", -"Back to Files" => "Dosyalara dön", +"Files need to be downloaded one by one." => "Dosyaların tek tek indirilmesi gerekmektedir.", +"Back to Files" => "Dosyalara Dön", "Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyük.", "Please download the files separately in smaller chunks or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin veya yöneticinizden yardım isteyin. ", "No source specified when installing app" => "Uygulama kurulurken bir kaynak belirtilmedi", @@ -39,21 +39,21 @@ $TRANSLATIONS = array( "%s enter the database name." => "%s veritabanı adını girin.", "%s you may not use dots in the database name" => "%s veritabanı adında nokta kullanamayabilirsiniz", "MS SQL username and/or password not valid: %s" => "MS SQL kullanıcı adı ve/veya parolası geçersiz: %s", -"You need to enter either an existing account or the administrator." => "Siz veya yönetici mevcut bir hesap girmeli.", +"You need to enter either an existing account or the administrator." => "Mevcut bit hesap ya da yönetici hesabını girmelisiniz.", "MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB kullanıcı adı ve/veya parolası geçersiz", "DB Error: \"%s\"" => "VT Hatası: \"%s\"", "Offending command was: \"%s\"" => "Saldırgan komut: \"%s\"", "MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB kullanıcı '%s'@'localhost' zaten mevcut.", "Drop this user from MySQL/MariaDB" => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)", "MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB kullanıcısı '%s'@'%%' zaten mevcut", -"Drop this user from MySQL/MariaDB." => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop)", +"Drop this user from MySQL/MariaDB." => "Bu kullanıcıyı MySQL/MariaDB'dan at (drop).", "Oracle connection could not be established" => "Oracle bağlantısı kurulamadı", "Oracle username and/or password not valid" => "Oracle kullanıcı adı ve/veya parolası geçerli değil", "Offending command was: \"%s\", name: %s, password: %s" => "Hatalı komut: \"%s\", ad: %s, parola: %s", "PostgreSQL username and/or password not valid" => "PostgreSQL kullanıcı adı ve/veya parolası geçerli değil", "Set an admin username." => "Bir yönetici kullanıcı adı ayarlayın.", "Set an admin password." => "Bir yönetici kullanıcı parolası ayarlayın.", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "%s shared »%s« with you" => "%s sizinle »%s« paylaşımında bulundu", "Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı", @@ -66,7 +66,7 @@ $TRANSLATIONS = array( "last month" => "geçen ay", "_%n month ago_::_%n months ago_" => array("","%n ay önce"), "last year" => "geçen yıl", -"years ago" => "yıl önce", +"years ago" => "yıllar önce", "Only the following characters are allowed in a username: \"a-z\", \"A-Z\", \"0-9\", and \"_.@-\"" => "Kullanıcı adında sadece bu karakterlere izin verilmektedir: \"a-z\", \"A-Z\", \"0-9\", ve \"_.@-\"", "A valid username must be provided" => "Geçerli bir kullanıcı adı mutlaka sağlanmalı", "A valid password must be provided" => "Geçerli bir parola mutlaka sağlanmalı", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index cbe552d23d2..b33d3055923 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Unable to change full name" => "Nelze změnit celé jméno", "Group already exists" => "Skupina již existuje", "Unable to add group" => "Nelze přidat skupinu", +"Files decrypted successfully" => "Soubory úspěšně dešifrovány", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nebylo možno dešifrovat soubory, zkontroluje prosím owncloud.log nebo kontaktujte svého administrátora", "Couldn't decrypt your files, check your password and try again" => "Nebylo možno dešifrovat soubory, zkontrolujte své heslo a zkuste znovu", "Email saved" => "E-mail uložen", @@ -113,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", "Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", "Allow mail notification" => "Povolit e-mailová upozornění", +"Allow users to send mail notification for shared files" => "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory", "Security" => "Zabezpečení", "Enforce HTTPS" => "Vynutit HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index e9105c8dda7..2255c2e8bcf 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", +"Allow users to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "Erzwinge HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 8b9c455401c..16622c80b01 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", "Allow mail notification" => "Mail-Benachrichtigung erlauben", +"Allow users to send mail notification for shared files" => "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", "Forces the clients to connect to %s via an encrypted connection." => "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen.", diff --git a/settings/l10n/en_GB.php b/settings/l10n/en_GB.php index c61d1c8de2e..1d1cb17a7fa 100644 --- a/settings/l10n/en_GB.php +++ b/settings/l10n/en_GB.php @@ -67,7 +67,7 @@ $TRANSLATIONS = array( "Error creating user" => "Error creating user", "A valid password must be provided" => "A valid password must be provided", "Warning: Home directory for user \"{user}\" already exists" => "Warning: Home directory for user \"{user}\" already exists", -"__language_name__" => "__language_name__", +"__language_name__" => "English (British English)", "Everything (fatal issues, errors, warnings, info, debug)" => "Everything (fatal issues, errors, warnings, info, debug)", "Info, warnings, errors and fatal issues" => "Info, warnings, errors and fatal issues", "Warnings, errors and fatal issues" => "Warnings, errors and fatal issues", @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Allow users to share with anyone", "Allow users to only share with users in their groups" => "Allow users to only share with users in their groups", "Allow mail notification" => "Allow mail notification", +"Allow users to send mail notification for shared files" => "Allow users to send mail notification for shared files", "Security" => "Security", "Enforce HTTPS" => "Enforce HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forces the clients to connect to %s via an encrypted connection.", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index b46e0138c1d..5ad3b4b0d69 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -16,6 +16,9 @@ $TRANSLATIONS = array( "Unable to change full name" => "Täispika nime muutmine ebaõnnestus", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", +"Files decrypted successfully" => "Failide krüpteerimine õnnestus", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Ei suutnud faile dekrüpteerida, palun kontrolli oma owncloud.log-i või küsi nõu administraatorilt", +"Couldn't decrypt your files, check your password and try again" => "Ei suutnud failde dekrüpteerida, kontrolli parooli ja proovi uuesti", "Email saved" => "Kiri on salvestatud", "Invalid email" => "Vigane e-post", "Unable to delete group" => "Grupi kustutamine ebaõnnestus", @@ -111,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Luba kasutajatel kõigiga jagada", "Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", "Allow mail notification" => "Luba teavitused e-postiga", +"Allow users to send mail notification for shared files" => "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", "Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index d11ab032a0d..d0bc283d87d 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -74,6 +74,7 @@ $TRANSLATIONS = array( "SSL" => "SSL", "TLS" => "TLS", "Security Warning" => "Turvallisuusvaroitus", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Käytät %sia HTTP-yhteydellä. Suosittelemme määrittämään palvelimen vaatimaan salattua HTTPS-yhteyttä.", "Setup Warning" => "Asetusvaroitus", "Please double check the installation guides." => "Lue asennusohjeet tarkasti.", "Module 'fileinfo' missing" => "Moduuli 'fileinfo' puuttuu", @@ -101,6 +102,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Salli käyttäjien jakaa kenen tahansa kanssa", "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", "Allow mail notification" => "Salli sähköposti-ilmoitukset", +"Allow users to send mail notification for shared files" => "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta.", @@ -151,6 +153,7 @@ $TRANSLATIONS = array( "Select new from Files" => "Valitse uusi tiedostoista", "Remove image" => "Poista kuva", "Either png or jpg. Ideally square but you will be able to crop it." => "Joko png- tai jpg-kuva. Mieluite neliö, voit kuitenkin rajata kuvaa.", +"Your avatar is provided by your original account." => "Avatar-kuvasi pohjautuu alkuperäiseen tiliisi.", "Cancel" => "Peru", "Choose as profile image" => "Valitse profiilikuvaksi", "Language" => "Kieli", @@ -158,6 +161,7 @@ $TRANSLATIONS = array( "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "Käytä tätä osoitetta käyttääksesi tiedostojasi WebDAVin kautta", "The encryption app is no longer enabled, please decrypt all your files" => "Salaussovellus ei ole enää käytössä, joten pura kaikkien tiedostojesi salaus", +"Log-in password" => "Kirjautumissalasana", "Decrypt all Files" => "Pura kaikkien tiedostojen salaus", "Login Name" => "Kirjautumisnimi", "Create" => "Luo", diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 7380a7abdea..0464dee78f4 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Autoriser les utilisateurs à partager avec tout le monde", "Allow users to only share with users in their groups" => "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement", "Allow mail notification" => "Autoriser les notifications par couriel", +"Allow users to send mail notification for shared files" => "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés", "Security" => "Sécurité", "Enforce HTTPS" => "Forcer HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forcer les clients à se connecter à %s via une connexion chiffrée.", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index b320609dd9f..ab609ec1bcf 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que os usuarios compartan con calquera", "Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos", "Allow mail notification" => "Permitir o envío de notificacións por correo", +"Allow users to send mail notification for shared files" => "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos", "Security" => "Seguranza", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index dd790b85112..74c16029a87 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Consenti agli utenti di condividere con chiunque", "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi", "Allow mail notification" => "Consenti le notifiche tramite posta elettronica", +"Allow users to send mail notification for shared files" => "Consenti agli utenti di mandare e-mail di notifica per i file condivisi", "Security" => "Protezione", "Enforce HTTPS" => "Forza HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index a88725fd5f0..5cc183beab1 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Toestaan dat gebruikers met iedereen delen", "Allow users to only share with users in their groups" => "Instellen dat gebruikers alleen met leden binnen hun groepen delen", "Allow mail notification" => "Toestaan e-mailnotificaties", +"Allow users to send mail notification for shared files" => "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden", "Security" => "Beveiliging", "Enforce HTTPS" => "Afdwingen HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Dwingt de clients om een versleutelde verbinding te maken met %s", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index ff93b7b1be1..88fdd667d51 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", "Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", "Allow mail notification" => "Pozwól na mailowe powiadomienia", +"Allow users to send mail notification for shared files" => "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików", "Security" => "Bezpieczeństwo", "Enforce HTTPS" => "Wymuś HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index aae9027ba35..482823926b8 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir que usuários compartilhem com qualquer um", "Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos", "Allow mail notification" => "Permitir notificação por email", +"Allow users to send mail notification for shared files" => "Permitir aos usuários enviar notificação de email para arquivos compartilhados", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 89d7f8d2b14..6d9fdc0f5b9 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -10,7 +10,7 @@ $TRANSLATIONS = array( "Send mode" => "Gönderme kipi", "Encryption" => "Şifreleme", "Authentication method" => "Kimlik doğrulama yöntemi", -"Unable to load list from App Store" => "App Store'dan liste yüklenemiyor", +"Unable to load list from App Store" => "Uygulama Mağazasın'dan liste yüklenemiyor", "Authentication error" => "Kimlik doğrulama hatası", "Your full name has been changed." => "Tam adınız değiştirildi.", "Unable to change full name" => "Tam adınız değiştirilirken hata", @@ -83,7 +83,7 @@ $TRANSLATIONS = array( "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "%s konumuna HTTP aracılığıyla erişiyorsunuz. Sunucunuzu HTTPS kullanımını zorlaması üzere yapılandırmanızı şiddetle öneririz.", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu belge kök dizini dışına almanızı şiddetle tavsiye ederiz.", "Setup Warning" => "Kurulum Uyarısı", -"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya aktarımı için düzgün bir şekilde yapılandırılmamış. WevDAV arayüzü sorunlu görünüyor.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını tekrar kontrol edin.", "Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Kullanıcıların her şeyi paylaşmalarına izin ver", "Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", "Allow mail notification" => "Posta bilgilendirmesine izin ver", +"Allow users to send mail notification for shared files" => "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", "Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar.", -- cgit v1.2.3 From 3fc809dfd80a296d7da922a06f9e13d446b3d3f0 Mon Sep 17 00:00:00 2001 From: Jenkins for ownCloud Date: Fri, 25 Apr 2014 01:56:28 -0400 Subject: [tx-robot] updated from transifex --- apps/files/l10n/ca.php | 2 - apps/files/l10n/cs_CZ.php | 3 +- apps/files/l10n/da.php | 2 - apps/files/l10n/de.php | 2 - apps/files/l10n/de_DE.php | 2 - apps/files/l10n/el.php | 2 - apps/files/l10n/en_GB.php | 2 - apps/files/l10n/es.php | 3 +- apps/files/l10n/es_AR.php | 2 - apps/files/l10n/es_CL.php | 2 + apps/files/l10n/es_MX.php | 2 - apps/files/l10n/et_EE.php | 2 - apps/files/l10n/eu.php | 2 - apps/files/l10n/fi_FI.php | 3 +- apps/files/l10n/fr.php | 2 - apps/files/l10n/gl.php | 2 - apps/files/l10n/hu_HU.php | 2 - apps/files/l10n/ia.php | 1 + apps/files/l10n/id.php | 2 - apps/files/l10n/it.php | 2 - apps/files/l10n/ja.php | 2 - apps/files/l10n/ko.php | 2 - apps/files/l10n/lt_LT.php | 2 - apps/files/l10n/mk.php | 1 - apps/files/l10n/nb_NO.php | 2 - apps/files/l10n/nl.php | 2 - apps/files/l10n/pl.php | 2 - apps/files/l10n/pt_BR.php | 2 - apps/files/l10n/pt_PT.php | 2 - apps/files/l10n/ro.php | 11 ++ apps/files/l10n/ru.php | 2 - apps/files/l10n/sk_SK.php | 2 - apps/files/l10n/sl.php | 3 +- apps/files/l10n/sv.php | 3 +- apps/files/l10n/tr.php | 2 - apps/files/l10n/zh_CN.php | 2 - apps/files/l10n/zh_TW.php | 1 - apps/files_encryption/l10n/es_AR.php | 1 + apps/files_encryption/l10n/pt_PT.php | 3 + apps/files_encryption/l10n/zh_TW.php | 2 + apps/files_external/l10n/es_AR.php | 1 + apps/files_external/l10n/es_CL.php | 5 + apps/files_external/l10n/ia.php | 1 + apps/files_external/l10n/sv.php | 6 +- apps/files_external/l10n/zh_TW.php | 1 + apps/files_sharing/l10n/bg_BG.php | 3 +- apps/user_ldap/l10n/af_ZA.php | 3 +- apps/user_ldap/l10n/es.php | 2 + apps/user_ldap/l10n/es_AR.php | 7 ++ apps/user_ldap/l10n/ia.php | 3 +- core/l10n/af_ZA.php | 35 ++++++ core/l10n/es_AR.php | 5 + core/l10n/ia.php | 93 ++++++++++++++- core/l10n/ro.php | 2 + core/l10n/sv.php | 4 +- core/l10n/uk.php | 7 ++ core/l10n/zh_TW.php | 5 + l10n/ach/files.po | 74 ++++++------ l10n/ach/lib.po | 53 +++++---- l10n/ach/settings.po | 72 +++++++----- l10n/ady/files.po | 74 ++++++------ l10n/ady/lib.po | 53 +++++---- l10n/ady/settings.po | 72 +++++++----- l10n/af_ZA/core.po | 101 +++++++++-------- l10n/af_ZA/files.po | 74 ++++++------ l10n/af_ZA/lib.po | 55 +++++---- l10n/af_ZA/settings.po | 76 ++++++++----- l10n/af_ZA/user_ldap.po | 28 ++--- l10n/ak/files.po | 74 ++++++------ l10n/ak/lib.po | 53 +++++---- l10n/ak/settings.po | 72 +++++++----- l10n/am_ET/files.po | 74 ++++++------ l10n/am_ET/lib.po | 53 +++++---- l10n/am_ET/settings.po | 72 +++++++----- l10n/ar/files.po | 74 ++++++------ l10n/ar/lib.po | 53 +++++---- l10n/ar/settings.po | 72 +++++++----- l10n/ast/files.po | 74 ++++++------ l10n/ast/lib.po | 53 +++++---- l10n/ast/settings.po | 72 +++++++----- l10n/az/files.po | 74 ++++++------ l10n/az/lib.po | 53 +++++---- l10n/az/settings.po | 72 +++++++----- l10n/be/files.po | 74 ++++++------ l10n/be/lib.po | 53 +++++---- l10n/be/settings.po | 72 +++++++----- l10n/bg_BG/files.po | 74 ++++++------ l10n/bg_BG/files_sharing.po | 8 +- l10n/bg_BG/lib.po | 53 +++++---- l10n/bg_BG/settings.po | 72 +++++++----- l10n/bn_BD/files.po | 74 ++++++------ l10n/bn_BD/lib.po | 53 +++++---- l10n/bn_BD/settings.po | 72 +++++++----- l10n/bs/files.po | 74 ++++++------ l10n/bs/lib.po | 53 +++++---- l10n/bs/settings.po | 72 +++++++----- l10n/ca/files.po | 74 ++++++------ l10n/ca/lib.po | 53 +++++---- l10n/ca/settings.po | 72 +++++++----- l10n/cs_CZ/files.po | 77 ++++++------- l10n/cs_CZ/lib.po | 66 ++++++----- l10n/cs_CZ/settings.po | 74 +++++++----- l10n/cy_GB/files.po | 74 ++++++------ l10n/cy_GB/lib.po | 53 +++++---- l10n/cy_GB/settings.po | 72 +++++++----- l10n/da/files.po | 74 ++++++------ l10n/da/lib.po | 53 +++++---- l10n/da/settings.po | 72 +++++++----- l10n/de/files.po | 76 ++++++------- l10n/de/lib.po | 91 ++++++++------- l10n/de/settings.po | 74 +++++++----- l10n/de_AT/files.po | 74 ++++++------ l10n/de_AT/lib.po | 53 +++++---- l10n/de_AT/settings.po | 72 +++++++----- l10n/de_CH/files.po | 74 ++++++------ l10n/de_CH/lib.po | 53 +++++---- l10n/de_CH/settings.po | 72 +++++++----- l10n/de_DE/files.po | 74 ++++++------ l10n/de_DE/lib.po | 91 ++++++++------- l10n/de_DE/settings.po | 74 +++++++----- l10n/el/files.po | 74 ++++++------ l10n/el/lib.po | 53 +++++---- l10n/el/settings.po | 72 +++++++----- l10n/en@pirate/files.po | 74 ++++++------ l10n/en@pirate/lib.po | 53 +++++---- l10n/en@pirate/settings.po | 72 +++++++----- l10n/en_GB/files.po | 76 ++++++------- l10n/en_GB/lib.po | 89 ++++++++------- l10n/en_GB/settings.po | 74 +++++++----- l10n/eo/files.po | 74 ++++++------ l10n/eo/lib.po | 53 +++++---- l10n/eo/settings.po | 72 +++++++----- l10n/es/files.po | 79 ++++++------- l10n/es/lib.po | 82 ++++++++------ l10n/es/settings.po | 73 +++++++----- l10n/es/user_ldap.po | 33 +++--- l10n/es_AR/core.po | 38 +++---- l10n/es_AR/files.po | 74 ++++++------ l10n/es_AR/files_encryption.po | 51 +++++---- l10n/es_AR/files_external.po | 16 +-- l10n/es_AR/lib.po | 53 +++++---- l10n/es_AR/settings.po | 135 ++++++++++++---------- l10n/es_AR/user_ldap.po | 43 +++---- l10n/es_CL/files.po | 78 ++++++------- l10n/es_CL/files_external.po | 16 +-- l10n/es_CL/lib.po | 53 +++++---- l10n/es_CL/settings.po | 72 +++++++----- l10n/es_CR/files.po | 74 ++++++------ l10n/es_CR/lib.po | 53 +++++---- l10n/es_CR/settings.po | 72 +++++++----- l10n/es_MX/files.po | 74 ++++++------ l10n/es_MX/lib.po | 53 +++++---- l10n/es_MX/settings.po | 72 +++++++----- l10n/et_EE/core.po | 4 +- l10n/et_EE/files.po | 76 ++++++------- l10n/et_EE/files_external.po | 4 +- l10n/et_EE/lib.po | 71 +++++++----- l10n/et_EE/settings.po | 74 +++++++----- l10n/et_EE/user_ldap.po | 4 +- l10n/eu/files.po | 74 ++++++------ l10n/eu/lib.po | 53 +++++---- l10n/eu/settings.po | 72 +++++++----- l10n/eu_ES/files.po | 74 ++++++------ l10n/eu_ES/lib.po | 53 +++++---- l10n/eu_ES/settings.po | 72 +++++++----- l10n/fa/files.po | 74 ++++++------ l10n/fa/lib.po | 53 +++++---- l10n/fa/settings.po | 72 +++++++----- l10n/fi_FI/files.po | 81 ++++++------- l10n/fi_FI/lib.po | 81 +++++++------ l10n/fi_FI/settings.po | 76 ++++++++----- l10n/fr/files.po | 76 ++++++------- l10n/fr/lib.po | 82 ++++++++------ l10n/fr/settings.po | 74 +++++++----- l10n/fr_CA/files.po | 74 ++++++------ l10n/fr_CA/lib.po | 53 +++++---- l10n/fr_CA/settings.po | 72 +++++++----- l10n/gl/files.po | 76 ++++++------- l10n/gl/lib.po | 89 ++++++++------- l10n/gl/settings.po | 74 +++++++----- l10n/he/files.po | 74 ++++++------ l10n/he/lib.po | 53 +++++---- l10n/he/settings.po | 72 +++++++----- l10n/hi/files.po | 74 ++++++------ l10n/hi/lib.po | 53 +++++---- l10n/hi/settings.po | 72 +++++++----- l10n/hr/files.po | 74 ++++++------ l10n/hr/lib.po | 53 +++++---- l10n/hr/settings.po | 72 +++++++----- l10n/hu_HU/files.po | 74 ++++++------ l10n/hu_HU/lib.po | 55 +++++---- l10n/hu_HU/settings.po | 74 +++++++----- l10n/hy/files.po | 74 ++++++------ l10n/hy/lib.po | 53 +++++---- l10n/hy/settings.po | 72 +++++++----- l10n/ia/core.po | 213 ++++++++++++++++++----------------- l10n/ia/files.po | 76 ++++++------- l10n/ia/files_external.po | 16 +-- l10n/ia/lib.po | 73 +++++++----- l10n/ia/settings.po | 86 ++++++++------ l10n/ia/user_ldap.po | 28 ++--- l10n/id/files.po | 74 ++++++------ l10n/id/lib.po | 53 +++++---- l10n/id/settings.po | 72 +++++++----- l10n/is/files.po | 74 ++++++------ l10n/is/lib.po | 53 +++++---- l10n/is/settings.po | 72 +++++++----- l10n/it/files.po | 76 ++++++------- l10n/it/lib.po | 85 ++++++++------ l10n/it/settings.po | 74 +++++++----- l10n/ja/files.po | 74 ++++++------ l10n/ja/lib.po | 53 +++++---- l10n/ja/settings.po | 72 +++++++----- l10n/jv/files.po | 74 ++++++------ l10n/jv/lib.po | 53 +++++---- l10n/jv/settings.po | 72 +++++++----- l10n/ka_GE/files.po | 74 ++++++------ l10n/ka_GE/lib.po | 53 +++++---- l10n/ka_GE/settings.po | 72 +++++++----- l10n/km/files.po | 74 ++++++------ l10n/km/lib.po | 53 +++++---- l10n/km/settings.po | 72 +++++++----- l10n/kn/files.po | 74 ++++++------ l10n/kn/lib.po | 53 +++++---- l10n/kn/settings.po | 72 +++++++----- l10n/ko/files.po | 74 ++++++------ l10n/ko/lib.po | 53 +++++---- l10n/ko/settings.po | 72 +++++++----- l10n/ku_IQ/files.po | 74 ++++++------ l10n/ku_IQ/lib.po | 53 +++++---- l10n/ku_IQ/settings.po | 72 +++++++----- l10n/lb/files.po | 74 ++++++------ l10n/lb/lib.po | 53 +++++---- l10n/lb/settings.po | 72 +++++++----- l10n/lt_LT/files.po | 74 ++++++------ l10n/lt_LT/lib.po | 53 +++++---- l10n/lt_LT/settings.po | 72 +++++++----- l10n/lv/files.po | 74 ++++++------ l10n/lv/lib.po | 53 +++++---- l10n/lv/settings.po | 72 +++++++----- l10n/mk/files.po | 74 ++++++------ l10n/mk/lib.po | 53 +++++---- l10n/mk/settings.po | 72 +++++++----- l10n/ml/files.po | 74 ++++++------ l10n/ml/lib.po | 53 +++++---- l10n/ml/settings.po | 72 +++++++----- l10n/ml_IN/files.po | 74 ++++++------ l10n/ml_IN/lib.po | 53 +++++---- l10n/ml_IN/settings.po | 72 +++++++----- l10n/mn/files.po | 74 ++++++------ l10n/mn/lib.po | 53 +++++---- l10n/mn/settings.po | 72 +++++++----- l10n/ms_MY/files.po | 74 ++++++------ l10n/ms_MY/lib.po | 53 +++++---- l10n/ms_MY/settings.po | 72 +++++++----- l10n/my_MM/files.po | 74 ++++++------ l10n/my_MM/lib.po | 53 +++++---- l10n/my_MM/settings.po | 72 +++++++----- l10n/nb_NO/files.po | 74 ++++++------ l10n/nb_NO/lib.po | 53 +++++---- l10n/nb_NO/settings.po | 72 +++++++----- l10n/nds/files.po | 74 ++++++------ l10n/nds/lib.po | 53 +++++---- l10n/nds/settings.po | 72 +++++++----- l10n/ne/files.po | 74 ++++++------ l10n/ne/lib.po | 53 +++++---- l10n/ne/settings.po | 72 +++++++----- l10n/nl/files.po | 76 ++++++------- l10n/nl/lib.po | 53 +++++---- l10n/nl/settings.po | 74 +++++++----- l10n/nn_NO/files.po | 74 ++++++------ l10n/nn_NO/lib.po | 53 +++++---- l10n/nn_NO/settings.po | 72 +++++++----- l10n/nqo/files.po | 74 ++++++------ l10n/nqo/lib.po | 53 +++++---- l10n/nqo/settings.po | 72 +++++++----- l10n/oc/files.po | 74 ++++++------ l10n/oc/lib.po | 53 +++++---- l10n/oc/settings.po | 72 +++++++----- l10n/or_IN/files.po | 74 ++++++------ l10n/or_IN/lib.po | 53 +++++---- l10n/or_IN/settings.po | 72 +++++++----- l10n/pa/files.po | 74 ++++++------ l10n/pa/lib.po | 53 +++++---- l10n/pa/settings.po | 72 +++++++----- l10n/pl/files.po | 76 ++++++------- l10n/pl/lib.po | 89 ++++++++------- l10n/pl/settings.po | 74 +++++++----- l10n/pt_BR/files.po | 76 ++++++------- l10n/pt_BR/lib.po | 89 ++++++++------- l10n/pt_BR/settings.po | 74 +++++++----- l10n/pt_PT/files.po | 74 ++++++------ l10n/pt_PT/files_encryption.po | 56 ++++----- l10n/pt_PT/lib.po | 53 +++++---- l10n/pt_PT/settings.po | 72 +++++++----- l10n/ro/core.po | 32 +++--- l10n/ro/files.po | 97 ++++++++-------- l10n/ro/lib.po | 53 +++++---- l10n/ro/settings.po | 151 ++++++++++++++----------- l10n/ru/files.po | 74 ++++++------ l10n/ru/lib.po | 53 +++++---- l10n/ru/settings.po | 72 +++++++----- l10n/si_LK/files.po | 74 ++++++------ l10n/si_LK/lib.po | 53 +++++---- l10n/si_LK/settings.po | 72 +++++++----- l10n/sk/files.po | 74 ++++++------ l10n/sk/lib.po | 53 +++++---- l10n/sk/settings.po | 72 +++++++----- l10n/sk_SK/files.po | 74 ++++++------ l10n/sk_SK/lib.po | 53 +++++---- l10n/sk_SK/settings.po | 72 +++++++----- l10n/sl/files.po | 76 ++++++------- l10n/sl/lib.po | 73 +++++++----- l10n/sl/settings.po | 82 +++++++++----- l10n/sq/files.po | 74 ++++++------ l10n/sq/lib.po | 53 +++++---- l10n/sq/settings.po | 72 +++++++----- l10n/sr/files.po | 74 ++++++------ l10n/sr/lib.po | 53 +++++---- l10n/sr/settings.po | 72 +++++++----- l10n/sr@latin/files.po | 74 ++++++------ l10n/sr@latin/lib.po | 53 +++++---- l10n/sr@latin/settings.po | 72 +++++++----- l10n/su/files.po | 74 ++++++------ l10n/su/lib.po | 53 +++++---- l10n/su/settings.po | 72 +++++++----- l10n/sv/core.po | 35 +++--- l10n/sv/files.po | 77 ++++++------- l10n/sv/files_external.po | 23 ++-- l10n/sv/lib.po | 90 ++++++++------- l10n/sv/settings.po | 77 ++++++++----- l10n/sw_KE/files.po | 74 ++++++------ l10n/sw_KE/lib.po | 53 +++++---- l10n/sw_KE/settings.po | 72 +++++++----- l10n/ta_LK/files.po | 74 ++++++------ l10n/ta_LK/lib.po | 53 +++++---- l10n/ta_LK/settings.po | 72 +++++++----- l10n/te/files.po | 74 ++++++------ l10n/te/lib.po | 53 +++++---- l10n/te/settings.po | 72 +++++++----- l10n/templates/core.pot | 2 +- l10n/templates/files.pot | 72 ++++++------ 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 | 51 +++++---- l10n/templates/private.pot | 43 +++---- l10n/templates/settings.pot | 70 ++++++++---- l10n/templates/user_ldap.pot | 2 +- l10n/templates/user_webdavauth.pot | 2 +- l10n/th_TH/files.po | 74 ++++++------ l10n/th_TH/lib.po | 53 +++++---- l10n/th_TH/settings.po | 72 +++++++----- l10n/tr/files.po | 76 ++++++------- l10n/tr/lib.po | 89 ++++++++------- l10n/tr/settings.po | 74 +++++++----- l10n/tzm/files.po | 74 ++++++------ l10n/tzm/lib.po | 53 +++++---- l10n/tzm/settings.po | 72 +++++++----- l10n/ug/files.po | 74 ++++++------ l10n/ug/lib.po | 53 +++++---- l10n/ug/settings.po | 72 +++++++----- l10n/uk/core.po | 45 ++++---- l10n/uk/files.po | 74 ++++++------ l10n/uk/lib.po | 53 +++++---- l10n/uk/settings.po | 80 ++++++++----- l10n/ur/files.po | 74 ++++++------ l10n/ur/lib.po | 53 +++++---- l10n/ur/settings.po | 72 +++++++----- l10n/ur_PK/files.po | 74 ++++++------ l10n/ur_PK/lib.po | 53 +++++---- l10n/ur_PK/settings.po | 72 +++++++----- l10n/uz/files.po | 74 ++++++------ l10n/uz/lib.po | 53 +++++---- l10n/uz/settings.po | 72 +++++++----- l10n/vi/files.po | 74 ++++++------ l10n/vi/lib.po | 53 +++++---- l10n/vi/settings.po | 72 +++++++----- l10n/zh_CN/files.po | 74 ++++++------ l10n/zh_CN/lib.po | 53 +++++---- l10n/zh_CN/settings.po | 72 +++++++----- l10n/zh_HK/files.po | 74 ++++++------ l10n/zh_HK/lib.po | 53 +++++---- l10n/zh_HK/settings.po | 72 +++++++----- l10n/zh_TW/core.po | 38 +++---- l10n/zh_TW/files.po | 74 ++++++------ l10n/zh_TW/files_encryption.po | 54 ++++----- l10n/zh_TW/files_external.po | 16 +-- l10n/zh_TW/lib.po | 53 +++++---- l10n/zh_TW/settings.po | 181 ++++++++++++++++------------- lib/l10n/af_ZA.php | 1 + lib/l10n/cs_CZ.php | 6 + lib/l10n/de.php | 18 +++ lib/l10n/de_DE.php | 18 +++ lib/l10n/en_GB.php | 18 +++ lib/l10n/es.php | 14 +++ lib/l10n/et_EE.php | 9 ++ lib/l10n/fi_FI.php | 14 +++ lib/l10n/fr.php | 14 +++ lib/l10n/gl.php | 18 +++ lib/l10n/ia.php | 14 ++- lib/l10n/it.php | 16 +++ lib/l10n/pl.php | 18 +++ lib/l10n/pt_BR.php | 18 +++ lib/l10n/sl.php | 10 ++ lib/l10n/sv.php | 18 +++ lib/l10n/tr.php | 18 +++ settings/l10n/af_ZA.php | 2 + settings/l10n/es.php | 1 + settings/l10n/es_AR.php | 32 ++++++ settings/l10n/fi_FI.php | 1 + settings/l10n/ia.php | 7 ++ settings/l10n/ro.php | 40 +++++++ settings/l10n/sl.php | 6 + settings/l10n/sv.php | 5 +- settings/l10n/uk.php | 4 + settings/l10n/zh_TW.php | 55 +++++++++ 419 files changed, 12829 insertions(+), 9772 deletions(-) create mode 100644 apps/files_external/l10n/es_CL.php (limited to 'apps') diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index e93f1b644a4..6938da220b2 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "No hi ha resposta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·larà.", "URL cannot be empty" => "L'URL no pot ser buit", -"In the home folder 'Shared' is a reserved filename" => "A la carpeta inici 'Compartit' és un nom de fitxer reservat", "{new_name} already exists" => "{new_name} ja existeix", "Could not create file" => "No s'ha pogut crear el fitxer", "Could not create folder" => "No s'ha pogut crear la carpeta", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Mida", "Modified" => "Modificat", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nom de carpeta no vàlid. L'ús de 'Shared' és reservat", "%s could not be renamed" => "%s no es pot canviar el nom", "File handling" => "Gestió de fitxers", "Maximum upload size" => "Mida màxima de pujada", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index e999a58ec61..40bb288ca1a 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Nepodařilo se získat výsledek ze serveru.", "File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání.", "URL cannot be empty" => "URL nemůže zůstat prázdná", -"In the home folder 'Shared' is a reserved filename" => "V osobní složce je název 'Shared' rezervovaný", "{new_name} already exists" => "{new_name} již existuje", "Could not create file" => "Nepodařilo se vytvořit soubor", "Could not create folder" => "Nepodařilo se vytvořit složku", @@ -62,8 +61,8 @@ $TRANSLATIONS = array( "Name" => "Název", "Size" => "Velikost", "Modified" => "Upraveno", -"Invalid folder name. Usage of 'Shared' is reserved." => "Neplatný název složky. Použití 'Shared' je rezervováno.", "%s could not be renamed" => "%s nemůže být přejmenován", +"Upload (max. %s)" => "Nahrát (max. %s)", "File handling" => "Zacházení se soubory", "Maximum upload size" => "Maximální velikost pro odesílání", "max. possible: " => "největší možná: ", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index 522ec8dff87..9a6ea9c0dce 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Kunne ikke hente resultat fra server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", "URL cannot be empty" => "URL kan ikke være tom", -"In the home folder 'Shared' is a reserved filename" => "Navnet 'Shared' er reserveret i hjemmemappen.", "{new_name} already exists" => "{new_name} eksisterer allerede", "Could not create file" => "Kunne ikke oprette fil", "Could not create folder" => "Kunne ikke oprette mappe", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ugyldig mappenavn. 'Shared' er reserveret.", "%s could not be renamed" => "%s kunne ikke omdøbes", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimal upload-størrelse", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index f1ef552b47f..1d15469dac6 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Ergebnis konnte nicht vom Server abgerufen werden.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", "URL cannot be empty" => "Die URL darf nicht leer sein", -"In the home folder 'Shared' is a reserved filename" => "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname", "{new_name} already exists" => "{new_name} existiert bereits", "Could not create file" => "Die Datei konnte nicht erstellt werden", "Could not create folder" => "Der Ordner konnte nicht erstellt werden", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload (max. %s)" => "Hochladen (max. %s)", "File handling" => "Dateibehandlung", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 6c4830081f4..41ca83e6f87 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Ergebnis konnte nicht vom Server abgerufen werden.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", "URL cannot be empty" => "Die URL darf nicht leer sein", -"In the home folder 'Shared' is a reserved filename" => "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname", "{new_name} already exists" => "{new_name} existiert bereits", "Could not create file" => "Die Datei konnte nicht erstellt werden", "Could not create folder" => "Der Ordner konnte nicht erstellt werden", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert.", "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload (max. %s)" => "Hochladen (max. %s)", "File handling" => "Dateibehandlung", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 90d73cb411d..f103d0621e5 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Αδυναμία λήψης αποτελέσματος από το διακομιστή.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", "URL cannot be empty" => "Η URL δεν πρέπει να είναι κενή", -"In the home folder 'Shared' is a reserved filename" => "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα", "{new_name} already exists" => "{new_name} υπάρχει ήδη", "Could not create file" => "Αδυναμία δημιουργίας αρχείου", "Could not create folder" => "Αδυναμία δημιουργίας φακέλου", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", -"Invalid folder name. Usage of 'Shared' is reserved." => "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα.", "%s could not be renamed" => "Αδυναμία μετονομασίας του %s", "File handling" => "Διαχείριση αρχείων", "Maximum upload size" => "Μέγιστο μέγεθος αποστολής", diff --git a/apps/files/l10n/en_GB.php b/apps/files/l10n/en_GB.php index 2084b61c840..93e1007e37c 100644 --- a/apps/files/l10n/en_GB.php +++ b/apps/files/l10n/en_GB.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Could not get result from server.", "File upload is in progress. Leaving the page now will cancel the upload." => "File upload is in progress. Leaving the page now will cancel the upload.", "URL cannot be empty" => "URL cannot be empty", -"In the home folder 'Shared' is a reserved filename" => "In the home folder 'Shared' is a reserved file name", "{new_name} already exists" => "{new_name} already exists", "Could not create file" => "Could not create file", "Could not create folder" => "Could not create folder", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Size", "Modified" => "Modified", -"Invalid folder name. Usage of 'Shared' is reserved." => "Invalid folder name. Usage of 'Shared' is reserved.", "%s could not be renamed" => "%s could not be renamed", "Upload (max. %s)" => "Upload (max. %s)", "File handling" => "File handling", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 5ea572956ec..fd1d915ea8c 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "No se pudo obtener respuesta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", "URL cannot be empty" => "La dirección URL no puede estar vacía", -"In the home folder 'Shared' is a reserved filename" => "En la carpeta home, no se puede usar 'Shared'", "{new_name} already exists" => "{new_name} ya existe", "Could not create file" => "No se pudo crear el archivo", "Could not create folder" => "No se pudo crear la carpeta", @@ -62,8 +61,8 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", "%s could not be renamed" => "%s no pudo ser renombrado", +"Upload (max. %s)" => "Subida (máx. %s)", "File handling" => "Administración de archivos", "Maximum upload size" => "Tamaño máximo de subida", "max. possible: " => "máx. posible:", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 19a71e0c9a0..4d4a349a10d 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "No se pudo obtener resultados del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si salís de la página ahora, la subida se cancelará.", "URL cannot be empty" => "La URL no puede estar vacía", -"In the home folder 'Shared' is a reserved filename" => "En el directorio inicial 'Shared' es un nombre de archivo reservado", "{new_name} already exists" => "{new_name} ya existe", "Could not create file" => "No se pudo crear el archivo", "Could not create folder" => "No se pudo crear el directorio", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de directorio inválido. 'Shared' está reservado.", "%s could not be renamed" => "No se pudo renombrar %s", "File handling" => "Tratamiento de archivos", "Maximum upload size" => "Tamaño máximo de subida", diff --git a/apps/files/l10n/es_CL.php b/apps/files/l10n/es_CL.php index 98606b4cd88..fa856ad5292 100644 --- a/apps/files/l10n/es_CL.php +++ b/apps/files/l10n/es_CL.php @@ -2,10 +2,12 @@ $TRANSLATIONS = array( "Files" => "Archivos", "Share" => "Compartir", +"Rename" => "Renombrar", "Error" => "Error", "_%n folder_::_%n folders_" => array("",""), "_%n file_::_%n files_" => array("",""), "_Uploading %n file_::_Uploading %n files_" => array("",""), +"New folder" => "Nuevo directorio", "Download" => "Descargar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_MX.php b/apps/files/l10n/es_MX.php index a55a70c1667..f5f773c760d 100644 --- a/apps/files/l10n/es_MX.php +++ b/apps/files/l10n/es_MX.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "No se pudo obtener respuesta del servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "La subida del archivo está en proceso. Si sale de la página ahora, la subida será cancelada.", "URL cannot be empty" => "La dirección URL no puede estar vacía", -"In the home folder 'Shared' is a reserved filename" => "En la carpeta de inicio, 'Shared' es un nombre reservado", "{new_name} already exists" => "{new_name} ya existe", "Could not create file" => "No se pudo crear el archivo", "Could not create folder" => "No se pudo crear la carpeta", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado.", "%s could not be renamed" => "%s no pudo ser renombrado", "File handling" => "Administración de archivos", "Maximum upload size" => "Tamaño máximo de subida", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index ed16e38ac72..4af93fa9ba2 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Serverist ei saadud tulemusi", "File upload is in progress. Leaving the page now will cancel the upload." => "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle üleslaadimise.", "URL cannot be empty" => "URL ei saa olla tühi", -"In the home folder 'Shared' is a reserved filename" => "Kodukataloogis 'Shared' on reserveeritud failinimi", "{new_name} already exists" => "{new_name} on juba olemas", "Could not create file" => "Ei suuda luua faili", "Could not create folder" => "Ei suuda luua kataloogi", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", -"Invalid folder name. Usage of 'Shared' is reserved." => "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud.", "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", "Upload (max. %s)" => "Üleslaadimine (max. %s)", "File handling" => "Failide käsitlemine", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 26e2a34e4a5..e1bb7033ebd 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Ezin da zerbitzaritik emaitzik lortu", "File upload is in progress. Leaving the page now will cancel the upload." => "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du.", "URL cannot be empty" => "URLa ezin da hutsik egon", -"In the home folder 'Shared' is a reserved filename" => "Etxeko (home) karpetan 'Shared' erreserbatutako fitxategi izena da", "{new_name} already exists" => "{new_name} dagoeneko existitzen da", "Could not create file" => "Ezin izan da fitxategia sortu", "Could not create folder" => "Ezin izan da karpeta sortu", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", -"Invalid folder name. Usage of 'Shared' is reserved." => "Baliogabeako karpeta izena. 'Shared' izena erreserbatuta dago.", "%s could not be renamed" => "%s ezin da berrizendatu", "File handling" => "Fitxategien kudeaketa", "Maximum upload size" => "Igo daitekeen gehienezko tamaina", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 97216ff869e..ba3c921dfee 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -53,12 +53,13 @@ $TRANSLATIONS = array( "\"{name}\" is an invalid file name." => "\"{name}\" on virheellinen tiedostonimi.", "Your storage is full, files can not be updated or synced anymore!" => "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkronoida!", "Your storage is almost full ({usedSpacePercent}%)" => "Tallennustila on melkein loppu ({usedSpacePercent}%)", +"Encryption App is enabled but your keys are not initialized, please log-out and log-in again" => "Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen.", +"Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." => "Salaussovelluksen salausavain on virheellinen. Ole hyvä ja päivitä salausavain henkilökohtaisissa asetuksissasi jotta voit taas avata salatuskirjoitetut tiedostosi.", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "Salaus poistettiin käytöstä, mutta tiedostosi ovat edelleen salattuina. Siirry henkilökohtaisiin asetuksiin avataksesi tiedostojesi salauksen.", "Your download is being prepared. This might take some time if the files are big." => "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan.", "Name" => "Nimi", "Size" => "Koko", "Modified" => "Muokattu", -"Invalid folder name. Usage of 'Shared' is reserved." => "Virheellinen kansion nimi. 'Shared':n käyttö on varattu.", "%s could not be renamed" => "kohteen %s nimeäminen uudelleen epäonnistui", "Upload (max. %s)" => "Lähetys (enintään %s)", "File handling" => "Tiedostonhallinta", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 356ce574ed0..26ba8445f4f 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Ne peut recevoir les résultats du serveur.", "File upload is in progress. Leaving the page now will cancel the upload." => "L'envoi du fichier est en cours. Quitter cette page maintenant annulera l'envoi du fichier.", "URL cannot be empty" => "L'URL ne peut pas être vide", -"In the home folder 'Shared' is a reserved filename" => "Dans le dossier home, 'Partagé' est un nom de fichier réservé", "{new_name} already exists" => "{new_name} existe déjà", "Could not create file" => "Impossible de créer le fichier", "Could not create folder" => "Impossible de créer le dossier", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Taille", "Modified" => "Modifié", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée.", "%s could not be renamed" => "%s ne peut être renommé", "Upload (max. %s)" => "Envoi (max. %s)", "File handling" => "Gestion des fichiers", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 152bdfd7fdc..d9c6d003603 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Non foi posíbel obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío.", "URL cannot be empty" => "O URL non pode quedar en branco.", -"In the home folder 'Shared' is a reserved filename" => "«Shared» dentro do cartafol persoal é un nome reservado", "{new_name} already exists" => "Xa existe un {new_name}", "Could not create file" => "Non foi posíbel crear o ficheiro", "Could not create folder" => "Non foi posíbel crear o cartafol", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamaño", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nome de cartafol non válido. O uso de «Shared» está reservado.", "%s could not be renamed" => "%s non pode cambiar de nome", "Upload (max. %s)" => "Envío (máx. %s)", "File handling" => "Manexo de ficheiro", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 0f9a903e2b8..9ed00326826 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "A kiszolgálótól nem kapható meg az eredmény.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", "URL cannot be empty" => "Az URL-cím nem maradhat kitöltetlenül", -"In the home folder 'Shared' is a reserved filename" => "A kiindulási mappában a 'Shared' egy belső használatra fenntartott név", "{new_name} already exists" => "{new_name} már létezik", "Could not create file" => "Az állomány nem hozható létre", "Could not create folder" => "A mappa nem hozható létre", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", -"Invalid folder name. Usage of 'Shared' is reserved." => "Érvénytelen mappanév. A 'Shared' a rendszer számára fenntartott elnevezés.", "%s could not be renamed" => "%s átnevezése nem sikerült", "File handling" => "Fájlkezelés", "Maximum upload size" => "Maximális feltölthető fájlméret", diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index da1cafaa293..ff4cb0225b0 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Save" => "Salveguardar", "New" => "Nove", "Text file" => "File de texto", +"New folder" => "Nove dossier", "Folder" => "Dossier", "Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!", "Download" => "Discargar", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 40699ba886e..d8c0a47789c 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -30,7 +30,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Tidak mendapatkan hasil dari server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses.", "URL cannot be empty" => "URL tidak boleh kosong", -"In the home folder 'Shared' is a reserved filename" => "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan", "{new_name} already exists" => "{new_name} sudah ada", "Could not create file" => "Tidak dapat membuat berkas", "Could not create folder" => "Tidak dapat membuat folder", @@ -55,7 +54,6 @@ $TRANSLATIONS = array( "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan.", "%s could not be renamed" => "%s tidak dapat diubah nama", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran pengunggahan maksimum", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 0ec7e34f7aa..c77fb57c596 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Impossibile ottenere il risultato dal server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Caricamento del file in corso. La chiusura della pagina annullerà il caricamento.", "URL cannot be empty" => "L'URL non può essere vuoto.", -"In the home folder 'Shared' is a reserved filename" => "Nella cartella home 'Shared' è un nome riservato", "{new_name} already exists" => "{new_name} esiste già", "Could not create file" => "Impossibile creare il file", "Could not create folder" => "Impossibile creare la cartella", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Dimensione", "Modified" => "Modificato", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nome della cartella non valido. L'uso di 'Shared' è riservato.", "%s could not be renamed" => "%s non può essere rinominato", "Upload (max. %s)" => "Carica (massimo %s)", "File handling" => "Gestione file", diff --git a/apps/files/l10n/ja.php b/apps/files/l10n/ja.php index 7606a8d4b16..361fd835ce1 100644 --- a/apps/files/l10n/ja.php +++ b/apps/files/l10n/ja.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "サーバーから結果を取得できませんでした。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", "URL cannot be empty" => "URL は空にできません", -"In the home folder 'Shared' is a reserved filename" => "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です", "{new_name} already exists" => "{new_name} はすでに存在します", "Could not create file" => "ファイルを作成できませんでした", "Could not create folder" => "フォルダーを作成できませんでした", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "名前", "Size" => "サイズ", "Modified" => "更新日時", -"Invalid folder name. Usage of 'Shared' is reserved." => "無効なフォルダー名。「Shared」の利用は予約されています。", "%s could not be renamed" => "%sの名前を変更できませんでした", "File handling" => "ファイル操作", "Maximum upload size" => "最大アップロードサイズ", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 3c8a72097f2..21c7ebcdc44 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "서버에서 결과를 가져올 수 없습니다.", "File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", "URL cannot be empty" => "URL이 비어있을 수 없음", -"In the home folder 'Shared' is a reserved filename" => "'공유됨'은 홈 폴더의 예약된 파일 이름임", "{new_name} already exists" => "{new_name}이(가) 이미 존재함", "Could not create file" => "파일을 만들 수 없음", "Could not create folder" => "폴더를 만들 수 없음", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "이름", "Size" => "크기", "Modified" => "수정됨", -"Invalid folder name. Usage of 'Shared' is reserved." => "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다.", "%s could not be renamed" => "%s의 이름을 변경할 수 없습니다", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index fee09cf2d8b..a8c30016d3c 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Nepavyko gauti rezultato iš serverio.", "File upload is in progress. Leaving the page now will cancel the upload." => "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks.", "URL cannot be empty" => "URL negali būti tuščias.", -"In the home folder 'Shared' is a reserved filename" => "Pradiniame aplanke failo pavadinimas „Shared“ yra rezervuotas", "{new_name} already exists" => "{new_name} jau egzistuoja", "Could not create file" => "Neįmanoma sukurti failo", "Could not create folder" => "Neįmanoma sukurti aplanko", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", -"Invalid folder name. Usage of 'Shared' is reserved." => "Netinkamas aplanko pavadinimas. „Shared“ pavadinimas yra rezervuotas.", "%s could not be renamed" => "%s negali būti pervadintas", "File handling" => "Failų tvarkymas", "Maximum upload size" => "Maksimalus įkeliamo failo dydis", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index c303e51511b..e1ff2c0bc27 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -27,7 +27,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Не можам да добијам резултат од серверот.", "File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.", "URL cannot be empty" => "URL-то не може да биде празно", -"In the home folder 'Shared' is a reserved filename" => "Во домашната папка, 'Shared' е резервирано има на датотека/папка", "{new_name} already exists" => "{new_name} веќе постои", "Could not create file" => "Не множам да креирам датотека", "Could not create folder" => "Не можам да креирам папка", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 878d4df8221..9887087cca7 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Fikk ikke resultat fra serveren.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", "URL cannot be empty" => "URL kan ikke være tom", -"In the home folder 'Shared' is a reserved filename" => "I hjemmemappen er 'Shared' et reservert filnavn", "{new_name} already exists" => "{new_name} finnes allerede", "Could not create file" => "Klarte ikke å opprette fil", "Could not create folder" => "Klarte ikke å opprette mappe", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ulovlig mappenavn. Bruken av 'Shared' er reservert.", "%s could not be renamed" => "Kunne ikke gi nytt navn til %s", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimum opplastingsstørrelse", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 746c5b9c00e..e33d26e38d9 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Kon het resultaat van de server niet terugkrijgen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "URL cannot be empty" => "URL mag niet leeg zijn", -"In the home folder 'Shared' is a reserved filename" => "in de home map 'Shared' is een gereserveerde bestandsnaam", "{new_name} already exists" => "{new_name} bestaat al", "Could not create file" => "Kon bestand niet creëren", "Could not create folder" => "Kon niet creëren map", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Naam", "Size" => "Grootte", "Modified" => "Aangepast", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd.", "%s could not be renamed" => "%s kon niet worden hernoemd", "Upload (max. %s)" => "Upload (max. %s)", "File handling" => "Bestand", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index d0d05564d18..30c3496db33 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Nie można uzyskać wyniku z serwera.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane.", "URL cannot be empty" => "URL nie może być pusty", -"In the home folder 'Shared' is a reserved filename" => "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku", "{new_name} already exists" => "{new_name} już istnieje", "Could not create file" => "Nie można utworzyć pliku", "Could not create folder" => "Nie można utworzyć folderu", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Modyfikacja", -"Invalid folder name. Usage of 'Shared' is reserved." => "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane.", "%s could not be renamed" => "%s nie można zmienić nazwy", "Upload (max. %s)" => "Wysyłka (max. %s)", "File handling" => "Zarządzanie plikami", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index d0b741196db..10d8892e18f 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Não foi possível obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Upload em andamento. Sair da página agora resultará no cancelamento do envio.", "URL cannot be empty" => "URL não pode estar vazia", -"In the home folder 'Shared' is a reserved filename" => "Na pasta home 'Shared- Compartilhada' é um nome reservado", "{new_name} already exists" => "{new_name} já existe", "Could not create file" => "Não foi possível criar o arquivo", "Could not create folder" => "Não foi possível criar a pasta", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nome da pasta inválido. Uso de 'Shared' é reservado.", "%s could not be renamed" => "%s não pode ser renomeado", "Upload (max. %s)" => "Envio (max. %s)", "File handling" => "Tratamento de Arquivo", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 8c58c6458c0..c24d2cf8f38 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Não foi possível obter o resultado do servidor.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", "URL cannot be empty" => "URL não pode estar vazio", -"In the home folder 'Shared' is a reserved filename" => "Na pasta pessoal \"Partilhado\" é um nome de ficheiro reservado", "{new_name} already exists" => "O nome {new_name} já existe", "Could not create file" => "Não pôde criar ficheiro", "Could not create folder" => "Não pôde criar pasta", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", -"Invalid folder name. Usage of 'Shared' is reserved." => "Nome de pasta inválido. Utilização de \"Partilhado\" está reservada.", "%s could not be renamed" => "%s não pode ser renomeada", "File handling" => "Manuseamento de ficheiros", "Maximum upload size" => "Tamanho máximo de envio", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 998e58375e7..d3927f5daf0 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -3,7 +3,10 @@ $TRANSLATIONS = array( "Could not move %s - File with this name already exists" => "%s nu se poate muta - Fișierul cu acest nume există deja ", "Could not move %s" => "Nu se poate muta %s", "File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", +"\"%s\" is an invalid file name." => "\"%s\" este un nume de fișier nevalid", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume nevalide, '\\', '/', '<', '>', ':', '\"', '|', '?' și '*' nu sunt permise.", +"The target folder has been moved or deleted." => "Dosarul țintă a fost mutat sau șters.", +"Not a valid source" => "Sursă nevalidă", "Error while downloading %s to %s" => "Eroare la descarcarea %s in %s", "Error when creating the file" => "Eroare la crearea fisierului", "Folder name cannot be empty." => "Numele folderului nu poate fi liber.", @@ -24,6 +27,8 @@ $TRANSLATIONS = array( "Invalid directory." => "Dosar nevalid.", "Files" => "Fișiere", "Unable to upload {filename} as it is a directory or has 0 bytes" => "Nu se poate încărca {filename} deoarece este un director sau are mărimea de 0 octeți", +"Total file size {size1} exceeds upload limit {size2}" => "Mărimea fișierului este {size1} ce depășește limita de incarcare de {size2}", +"Not enough free space, you are uploading {size1} but only {size2} is left" => "Spațiu liber insuficient, încărcați {size1} însă doar {size2} disponibil rămas", "Upload cancelled." => "Încărcare anulată.", "Could not get result from server." => "Nu se poate obține rezultatul de la server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea.", @@ -31,6 +36,7 @@ $TRANSLATIONS = array( "{new_name} already exists" => "{new_name} există deja", "Could not create file" => "Nu s-a putut crea fisierul", "Could not create folder" => "Nu s-a putut crea folderul", +"Error fetching URL" => "Eroare încarcare URL", "Share" => "Partajează", "Delete permanently" => "Șterge permanent", "Rename" => "Redenumește", @@ -38,10 +44,12 @@ $TRANSLATIONS = array( "Error" => "Eroare", "Pending" => "În așteptare", "Could not rename file" => "Nu s-a putut redenumi fisierul", +"Error deleting file." => "Eroare la ștergerea fisierului.", "_%n folder_::_%n folders_" => array("%n director","%n directoare","%n directoare"), "_%n file_::_%n files_" => array("%n fișier","%n fișiere","%n fișiere"), "{dirs} and {files}" => "{dirs} și {files}", "_Uploading %n file_::_Uploading %n files_" => array("Se încarcă %n fișier.","Se încarcă %n fișiere.","Se încarcă %n fișiere."), +"\"{name}\" is an invalid file name." => "\"{name}\" este un nume de fișier nevalid.", "Your storage is full, files can not be updated or synced anymore!" => "Spațiul de stocare este plin, fișierele nu mai pot fi actualizate sau sincronizate!", "Your storage is almost full ({usedSpacePercent}%)" => "Spațiul de stocare este aproape plin ({usedSpacePercent}%)", "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." => "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele", @@ -50,6 +58,7 @@ $TRANSLATIONS = array( "Size" => "Mărime", "Modified" => "Modificat", "%s could not be renamed" => "%s nu a putut fi redenumit", +"Upload (max. %s)" => "Încarcă (max. %s)", "File handling" => "Manipulare fișiere", "Maximum upload size" => "Dimensiune maximă admisă la încărcare", "max. possible: " => "max. posibil:", @@ -59,7 +68,9 @@ $TRANSLATIONS = array( "Maximum input size for ZIP files" => "Dimensiunea maximă de intrare pentru fișierele ZIP", "Save" => "Salvează", "New" => "Nou", +"New text file" => "Un nou fișier text", "Text file" => "Fișier text", +"New folder" => "Un nou dosar", "Folder" => "Dosar", "From link" => "De la adresa", "Deleted files" => "Fișiere șterse", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 4586a73dc3c..a9430276e4f 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Не удалось получить ответ от сервера.", "File upload is in progress. Leaving the page now will cancel the upload." => "Идёт загрузка файла. Покинув страницу, вы прервёте загрузку.", "URL cannot be empty" => "Ссылка не может быть пустой.", -"In the home folder 'Shared' is a reserved filename" => "'Shared' - это зарезервированное имя файла в домашнем каталоге", "{new_name} already exists" => "{new_name} уже существует", "Could not create file" => "Не удалось создать файл", "Could not create folder" => "Не удалось создать каталог", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Имя", "Size" => "Размер", "Modified" => "Дата изменения", -"Invalid folder name. Usage of 'Shared' is reserved." => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", "%s could not be renamed" => "%s не может быть переименован", "File handling" => "Управление файлами", "Maximum upload size" => "Максимальный размер загружаемого файла", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index 2e079b4ce78..6c46bbd7fa2 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Nepodarilo sa dostať výsledky zo servera.", "File upload is in progress. Leaving the page now will cancel the upload." => "Opustenie stránky zruší práve prebiehajúce odosielanie súboru.", "URL cannot be empty" => "URL nemôže byť prázdna", -"In the home folder 'Shared' is a reserved filename" => "V domovskom priečinku je názov \"Shared\" vyhradený názov súboru", "{new_name} already exists" => "{new_name} už existuje", "Could not create file" => "Nemožno vytvoriť súbor", "Could not create folder" => "Nemožno vytvoriť priečinok", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "Názov", "Size" => "Veľkosť", "Modified" => "Upravené", -"Invalid folder name. Usage of 'Shared' is reserved." => "Názov priečinka je chybný. Použitie názvu 'Shared' nie je povolené.", "%s could not be renamed" => "%s nemohol byť premenovaný", "File handling" => "Nastavenie správania sa k súborom", "Maximum upload size" => "Maximálna veľkosť odosielaného súboru", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index fbd667226c0..ac304d992ca 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Ni mogoče pridobiti podatkov s strežnika.", "File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", "URL cannot be empty" => "Polje naslova URL ne sme biti prazno", -"In the home folder 'Shared' is a reserved filename" => "V domači mapi ni dovoljeno ustvariti mape z imenom 'Souporabe', saj je ime zadržano za javno mapo.", "{new_name} already exists" => "{new_name} že obstaja", "Could not create file" => "Ni mogoče ustvariti datoteke", "Could not create folder" => "Ni mogoče ustvariti mape", @@ -62,8 +61,8 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", -"Invalid folder name. Usage of 'Shared' is reserved." => "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo.", "%s could not be renamed" => "%s ni mogoče preimenovati", +"Upload (max. %s)" => "Pošiljanje (omejitev %s)", "File handling" => "Upravljanje z datotekami", "Maximum upload size" => "Največja velikost za pošiljanja", "max. possible: " => "največ mogoče:", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 811e568fefc..f3d0170a303 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Gick inte att hämta resultat från server.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen.", "URL cannot be empty" => "URL kan ej vara tomt", -"In the home folder 'Shared' is a reserved filename" => "I hemma katalogen 'Delat' är ett reserverat filnamn", "{new_name} already exists" => "{new_name} finns redan", "Could not create file" => "Kunde ej skapa fil", "Could not create folder" => "Kunde ej skapa katalog", @@ -62,8 +61,8 @@ $TRANSLATIONS = array( "Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", -"Invalid folder name. Usage of 'Shared' is reserved." => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud", "%s could not be renamed" => "%s kunde inte namnändras", +"Upload (max. %s)" => "Ladda upp (max. %s)", "File handling" => "Filhantering", "Maximum upload size" => "Maximal storlek att ladda upp", "max. possible: " => "max. möjligt:", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 586c81072a8..77c310fc9eb 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -35,7 +35,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "Sunucudan sonuç alınamadı.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işleminiz iptal olur.", "URL cannot be empty" => "URL boş olamaz", -"In the home folder 'Shared' is a reserved filename" => "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır", "{new_name} already exists" => "{new_name} zaten mevcut", "Could not create file" => "Dosya oluşturulamadı", "Could not create folder" => "Klasör oluşturulamadı", @@ -62,7 +61,6 @@ $TRANSLATIONS = array( "Name" => "İsim", "Size" => "Boyut", "Modified" => "Değiştirilme", -"Invalid folder name. Usage of 'Shared' is reserved." => "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır.", "%s could not be renamed" => "%s yeniden adlandırılamadı", "Upload (max. %s)" => "Yükle (azami: %s)", "File handling" => "Dosya işlemleri", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 59623bffd18..82cc68a4995 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -31,7 +31,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "不能从服务器得到结果", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", "URL cannot be empty" => "URL不能为空", -"In the home folder 'Shared' is a reserved filename" => "主目录里 'Shared' 是系统预留目录名", "{new_name} already exists" => "{new_name} 已存在", "Could not create file" => "不能创建文件", "Could not create folder" => "不能创建文件夹", @@ -57,7 +56,6 @@ $TRANSLATIONS = array( "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", -"Invalid folder name. Usage of 'Shared' is reserved." => "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹", "%s could not be renamed" => "%s 不能被重命名", "File handling" => "文件处理", "Maximum upload size" => "最大上传大小", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 3668b37d64e..92bc13189df 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -30,7 +30,6 @@ $TRANSLATIONS = array( "Could not get result from server." => "無法從伺服器取回結果", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中,離開此頁面將會取消上傳。", "URL cannot be empty" => "URL 不能留空", -"In the home folder 'Shared' is a reserved filename" => "在家目錄中不能使用「共享」作為檔名", "{new_name} already exists" => "{new_name} 已經存在", "Could not create file" => "無法建立檔案", "Could not create folder" => "無法建立資料夾", diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index bc1eedbf5eb..b885716f89b 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o una versión más reciente esté instalado y que OpenSSL junto con la extensión PHP esté habilitado y configurado apropiadamente. Por ahora, la aplicación de encriptación ha sido deshabilitada.", "Following users are not set up for encryption:" => "Los siguientes usuarios no fueron configurados para encriptar:", "Initial encryption started... This can take some time. Please wait." => "Encriptación inicial comenzada... Esto puede durar un tiempo. Por favor espere.", +"Initial encryption running... Please try again later." => "Encriptación inicial corriendo... Por favor intente mas tarde. ", "Go directly to your " => "Ve directamente a tu", "personal settings" => "Configuración personal", "Encryption" => "Encriptación", diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index d6d3c260363..9a1963953e3 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -7,8 +7,11 @@ $TRANSLATIONS = array( "Password successfully changed." => "Password alterada com sucesso.", "Could not change the password. Maybe the old password was not correct." => "Não foi possivel alterar a password. Possivelmente a password antiga não está correcta.", "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta.", +"Can not decrypt this file, probably this is a shared file. Please ask the file owner to reshare the file with you." => "Não foi possível desencriptar este ficheiro, possivelmente é um ficheiro partilhado. Peça ao proprietário do ficheiro para voltar a partilhar o ficheiro consigo.", +"Unknown error please check your system settings or contact your administrator" => "Erro desconhecido. Verifique por favor as definições do sistema ou contacte o seu administrador", "Missing requirements." => "Faltam alguns requisitos.", "Following users are not set up for encryption:" => "Os utilizadores seguintes não estão marcados para cifragem:", +"Go directly to your " => "Ir directamente para o seu", "personal settings" => "configurações personalizadas ", "Encryption" => "Encriptação", "Enable recovery key (allow to recover users files in case of password loss):" => "Active a chave de recuperação (permite recuperar os ficheiros no caso de perda da password):", diff --git a/apps/files_encryption/l10n/zh_TW.php b/apps/files_encryption/l10n/zh_TW.php index 390e6aff8c6..84146437ac0 100644 --- a/apps/files_encryption/l10n/zh_TW.php +++ b/apps/files_encryption/l10n/zh_TW.php @@ -15,6 +15,8 @@ $TRANSLATIONS = array( "Missing requirements." => "遺失必要條件。", "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "請確認已安裝 PHP 5.3.3 或是更新的版本以及 OpenSSL 也一併安裝在 PHP extension 裡面並啟用及設置完成。現在,加密功能是停用的。", "Following users are not set up for encryption:" => "以下的使用者無法設定加密:", +"Initial encryption started... This can take some time. Please wait." => "加密初始已啟用...這個需要一些時間。請稍等。", +"Initial encryption running... Please try again later." => "加密初始執行中...請晚點再試。", "Go directly to your " => "直接到您的", "personal settings" => "個人設定", "Encryption" => "加密", diff --git a/apps/files_external/l10n/es_AR.php b/apps/files_external/l10n/es_AR.php index f184dbdb7d8..9bcff39f018 100644 --- a/apps/files_external/l10n/es_AR.php +++ b/apps/files_external/l10n/es_AR.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "Permitir acceso", "Please provide a valid Dropbox app key and secret." => "Por favor, proporcioná un secreto y una contraseña válida para la aplicación Dropbox.", "Error configuring Google Drive storage" => "Error al configurar el almacenamiento de Google Drive", +"Saved" => "Guardado", "External Storage" => "Almacenamiento externo", "Folder name" => "Nombre de la carpeta", "External storage" => "Almacenamiento externo", diff --git a/apps/files_external/l10n/es_CL.php b/apps/files_external/l10n/es_CL.php new file mode 100644 index 00000000000..f52482cad46 --- /dev/null +++ b/apps/files_external/l10n/es_CL.php @@ -0,0 +1,5 @@ + "Nombre del directorio" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ia.php b/apps/files_external/l10n/ia.php index 47b0f89b8b5..1873f4ad6fe 100644 --- a/apps/files_external/l10n/ia.php +++ b/apps/files_external/l10n/ia.php @@ -1,5 +1,6 @@ "Nomine de dossier", "Groups" => "Gruppos", "Users" => "Usatores", "Delete" => "Deler" diff --git a/apps/files_external/l10n/sv.php b/apps/files_external/l10n/sv.php index 2992460d283..761e8f880c1 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -8,9 +8,9 @@ $TRANSLATIONS = array( "Saved" => "Sparad", "Note: " => " OBS: ", " and " => "och", -"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => " OBS: cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det.", -"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => " OBS: Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det.", -"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => " OBS: \"%s\" är inte installerat. Montering av %s är inte möjlig. Be din systemadministratör för att installera det.", +"Note: The cURL support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => " OBS: cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det.", +"Note: The FTP support in PHP is not enabled or installed. Mounting of %s is not possible. Please ask your system administrator to install it." => " OBS: Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det.", +"Note: \"%s\" is not installed. Mounting of %s is not possible. Please ask your system administrator to install it." => " OBS: \"%s\" är inte installerat. Montering av %s är inte möjlig. Be din systemadministratör att installera det.", "External Storage" => "Extern lagring", "Folder name" => "Mappnamn", "External storage" => "Extern lagring", diff --git a/apps/files_external/l10n/zh_TW.php b/apps/files_external/l10n/zh_TW.php index ac480e405fb..9a99a12aaaf 100644 --- a/apps/files_external/l10n/zh_TW.php +++ b/apps/files_external/l10n/zh_TW.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Grant access" => "允許存取", "Please provide a valid Dropbox app key and secret." => "請提供有效的 Dropbox app key 和 app secret 。", "Error configuring Google Drive storage" => "設定 Google Drive 儲存時發生錯誤", +"Saved" => "已儲存", "External Storage" => "外部儲存", "Folder name" => "資料夾名稱", "External storage" => "外部儲存", diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php index 4fe5ba6b16f..37e2ca33370 100644 --- a/apps/files_sharing/l10n/bg_BG.php +++ b/apps/files_sharing/l10n/bg_BG.php @@ -1,5 +1,6 @@ "Парола" +"Password" => "Парола", +"shared by %s" => "споделено от %s" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/af_ZA.php b/apps/user_ldap/l10n/af_ZA.php index 130e471e0e4..483a30b8e48 100644 --- a/apps/user_ldap/l10n/af_ZA.php +++ b/apps/user_ldap/l10n/af_ZA.php @@ -3,6 +3,7 @@ $TRANSLATIONS = array( "_%s group found_::_%s groups found_" => array("",""), "_%s user found_::_%s users found_" => array("",""), "Help" => "Hulp", -"Password" => "Wagwoord" +"Password" => "Wagwoord", +"Continue" => "Gaan voort" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 2c294aff785..bb1c9acb2ab 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -90,6 +90,8 @@ $TRANSLATIONS = array( "Group-Member association" => "Asociación Grupo-Miembro", "Nested Groups" => "Grupos anidados", "When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Cuando se active, se permitirán grupos que contenga otros grupos (solo funciona si el atributo de miembro de grupo contiene DNs).", +"Paging chunksize" => "Tamaño de los fragmentos de paginación", +"Chunksize used for paged LDAP searches that may return bulky results like user or group enumeration. (Setting it 0 disables paged LDAP searches in those situations.)" => "Tamaño de los fragmentos usado para búsquedas LDAP paginadas que pueden devolver resultados voluminosos, como enumeración de usuarios o de grupos. (Si se establece en 0, se deshabilitan las búsquedas LDAP paginadas en esas situaciones.)", "Special Attributes" => "Atributos especiales", "Quota Field" => "Cuota", "Quota Default" => "Cuota por defecto", diff --git a/apps/user_ldap/l10n/es_AR.php b/apps/user_ldap/l10n/es_AR.php index 877141bcdc8..4a8047c6d91 100644 --- a/apps/user_ldap/l10n/es_AR.php +++ b/apps/user_ldap/l10n/es_AR.php @@ -33,12 +33,14 @@ $TRANSLATIONS = array( "Save" => "Guardar", "Test Configuration" => "Probar configuración", "Help" => "Ayuda", +"Groups meeting these criteria are available in %s:" => "Los grupos que cumplen con estos criterios están disponibles en %s:", "only those object classes:" => "solo estos objetos de clases:", "only from those groups:" => "solo provenientes de estos grupos:", "Edit raw filter instead" => "Editar filtro en bruto", "Raw LDAP filter" => "Filtro LDAP en bruto", "The filter specifies which LDAP groups shall have access to the %s instance." => "El filtro especifica qué grupos LDAP deben tener acceso a la instancia %s.", "groups found" => "grupos encontrados", +"Users login with this attribute:" => "Los usuarios inician sesión con este atributo:", "LDAP Username:" => "Nombre de usuario LDAP:", "LDAP Email Address:" => "Correo electrónico LDAP:", "Other Attributes:" => "Otros atributos:", @@ -53,6 +55,7 @@ $TRANSLATIONS = array( "For anonymous access, leave DN and Password empty." => "Para acceso anónimo, dejá DN y contraseña vacíos.", "One Base DN per line" => "Una DN base por línea", "You can specify Base DN for users and groups in the Advanced tab" => "Podés especificar el DN base para usuarios y grupos en la pestaña \"Avanzado\"", +"Limit %s access to users meeting these criteria:" => "Limitar acceso %s a los usuarios que cumplen con este criterio:", "The filter specifies which LDAP users shall have access to the %s instance." => "El filtro especifica cuáles usuarios LDAP deben tener acceso a la instancia %s.", "users found" => "usuarios encontrados", "Back" => "Volver", @@ -67,6 +70,7 @@ $TRANSLATIONS = array( "Backup (Replica) Port" => "Puerto para copia de seguridad (réplica)", "Disable Main Server" => "Deshabilitar el Servidor Principal", "Only connect to the replica server." => "Conectarse únicamente al servidor de réplica.", +"Case insensitive LDAP server (Windows)" => "Servidor de LDAP insensible a mayúsculas/minúsculas (Windows)", "Turn off SSL certificate validation." => "Desactivar la validación por certificado SSL.", "Not recommended, use it for testing only! If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "No es recomendado, ¡Usalo solamente para pruebas! Si la conexión únicamente funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor %s.", "Cache Time-To-Live" => "Tiempo de vida del caché", @@ -84,6 +88,9 @@ $TRANSLATIONS = array( "One Group Base DN per line" => "Una DN base de grupo por línea", "Group Search Attributes" => "Atributos de búsqueda de grupo", "Group-Member association" => "Asociación Grupo-Miembro", +"Nested Groups" => "Grupos Anidados", +"When switched on, groups that contain groups are supported. (Only works if the group member attribute contains DNs.)" => "Cuando se activa, grupos que contienen grupos son soportados. (Solo funciona si el atributo de miembro del grupo contiene DNs)", +"Paging chunksize" => "Tamaño del fragmento de paginación", "Special Attributes" => "Atributos Especiales", "Quota Field" => "Campo de cuota", "Quota Default" => "Cuota por defecto", diff --git a/apps/user_ldap/l10n/ia.php b/apps/user_ldap/l10n/ia.php index e138fd835f1..b29ecbb1d24 100644 --- a/apps/user_ldap/l10n/ia.php +++ b/apps/user_ldap/l10n/ia.php @@ -7,6 +7,7 @@ $TRANSLATIONS = array( "Save" => "Salveguardar", "Help" => "Adjuta", "Password" => "Contrasigno", -"Back" => "Retro" +"Back" => "Retro", +"Continue" => "Continuar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index c19edebc260..9b24e2dcd4d 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -1,5 +1,7 @@ "Onbekende leertipe", +"No temporary profile picture available, try again" => "Geen tydelike profiel foto beskikbaar nie, probeer weer", "Sunday" => "Sondag", "Monday" => "Mandag", "Tuesday" => "Dinsdag", @@ -34,6 +36,8 @@ $TRANSLATIONS = array( "Yes" => "Ja", "No" => "Nee", "_{count} file conflict_::_{count} file conflicts_" => array("",""), +"Cancel" => "Kanseleer", +"Continue" => "Gaan voort", "Very weak password" => "Baie swak wagwoord", "Weak password" => "Swak wagwoord", "Good password" => "Goeie wagwoord", @@ -41,17 +45,36 @@ $TRANSLATIONS = array( "Shared" => "Gedeel", "Share" => "Deel", "Error" => "Fout", +"Error while changing permissions" => "Fout met verandering van regte", "Shared with you and the group {group} by {owner}" => "Met jou en die groep {group} gedeel deur {owner}", "Shared with you by {owner}" => "Met jou gedeel deur {owner}", +"Password protect" => "Beskerm met Wagwoord", "Password" => "Wagwoord", +"Allow Public Upload" => "Laat Publieke Oplaai toe", "Email link to person" => "E-pos aan persoon", "Send" => "Stuur", +"Set expiration date" => "Stel verval datum", +"Expiration date" => "Verval datum", +"group" => "groep", +"Shared in {item} with {user}" => "Gedeel in {item} met {user}", "can edit" => "kan wysig", +"access control" => "toegang beheer", +"create" => "skep", +"update" => "opdateer", +"delete" => "uitvee", +"share" => "deel", +"Password protected" => "Beskerm met Wagwoord", +"Error setting expiration date" => "Fout met opstel van verval datum", "Sending ..." => "Stuur ...", "Email sent" => "E-pos gestuur", +"Add" => "Voeg by", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Die opdateering was nie suksesvol nie. Raporteer die probleem by ownCloud community.", +"%s password reset" => "%s wagwoord herstel", "Use the following link to reset your password: {link}" => "Gebruik die volgende skakel om jou wagwoord te herstel: {link}", +"Request failed!
Did you make sure your email/username was right?" => "Versoek het gefaal!
Het jy seker gemaak jou e-pos/gebruiker naam is korrek?", "You will receive a link to reset your password via Email." => "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel.", "Username" => "Gebruikersnaam", +"Yes, I really want to reset my password now" => "Ja, Ek wil regtig my wagwoord herstel", "Your password was reset" => "Jou wagwoord is herstel", "To login page" => "Na aanteken-bladsy", "New password" => "Nuwe wagwoord", @@ -61,15 +84,27 @@ $TRANSLATIONS = array( "Apps" => "Toepassings", "Admin" => "Admin", "Help" => "Hulp", +"Access forbidden" => "Toegang verbode", "Cloud not found" => "Wolk nie gevind", +"Security Warning" => "Sekuriteits waarskuwing", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Jou PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Opdateer asseblief jou PHP instelasie om %s veilig te gebruik", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Jou data gids en leers is moontlik toeganklik vanaf die internet omdat die .htaccess leer nie werk nie.", +"For information how to properly configure your server, please see the documentation." => "Vir inligting oor hoe om jou bediener behoorlik op te stel, sien asseblief diedokumentasie.", "Create an admin account" => "Skep `n admin-rekening", +"Data folder" => "Data vouer", "Configure the database" => "Stel databasis op", "will be used" => "sal gebruik word", "Database user" => "Databasis-gebruiker", "Database password" => "Databasis-wagwoord", "Database name" => "Databasis naam", +"Database tablespace" => "Databasis tabelspasie", +"Database host" => "Databasis gasheer", "Finish setup" => "Maak opstelling klaar", +"%s is available. Get more information on how to update." => "%s is beskikbaar. Kry meer inligting oor opdatering.", "Log out" => "Teken uit", +"Automatic logon rejected!" => "Automatiese aantekening afgekeur!", +"Please change your password to secure your account again." => "Verander asseblief jou wagwoord om jou rekening te beveilig", "Lost your password?" => "Wagwoord verloor?", "remember" => "onthou", "Log in" => "Teken aan" diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 59e0afbdbe6..1bf43449fd7 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -56,6 +56,11 @@ $TRANSLATIONS = array( "(all selected)" => "(todos están seleccionados)", "({count} selected)" => "({count} seleccionados)", "Error loading file exists template" => "Error cargando la plantilla de archivo existente", +"Very weak password" => "Contraseña muy débil.", +"Weak password" => "Contraseña débil.", +"So-so password" => "Contraseña de nivel medio. ", +"Good password" => "Buena contraseña. ", +"Strong password" => "Contraseña fuerte.", "Shared" => "Compartido", "Share" => "Compartir", "Error" => "Error", diff --git a/core/l10n/ia.php b/core/l10n/ia.php index cff33a8ff9d..ef9c79a654f 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -1,5 +1,12 @@ "Data de expiration es in le passato.", +"Turned on maintenance mode" => "Activate modo de mantenentia", +"Turned off maintenance mode" => "De-activar modo de mantenentia", +"Updated database" => "Base de datos actualisate", +"No image or file provided" => "Il forniva necun imagine o file", +"Unknown filetype" => "Typo de file incognite", +"Invalid image" => "Imagine invalide", "Sunday" => "Dominica", "Monday" => "Lunedi", "Tuesday" => "Martedi", @@ -20,44 +27,122 @@ $TRANSLATIONS = array( "November" => "Novembre", "December" => "Decembre", "Settings" => "Configurationes", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"Saving..." => "Salveguardante...", +"seconds ago" => "secundas passate", +"_%n minute ago_::_%n minutes ago_" => array("%n minuta passate","%n minutas passate"), +"_%n hour ago_::_%n hours ago_" => array("%n hora passate","%n horas passate"), +"today" => "hodie", +"yesterday" => "heri", "_%n day ago_::_%n days ago_" => array("",""), +"last month" => "ultime mense", "_%n month ago_::_%n months ago_" => array("",""), -"_{count} file conflict_::_{count} file conflicts_" => array("",""), +"last year" => "ultime anno", +"years ago" => "annos passate", +"Choose" => "Seliger", +"Yes" => "Si", +"No" => "No", +"Ok" => "Ok", +"_{count} file conflict_::_{count} file conflicts_" => array("{count} conflicto de file","{count} conflictos de file"), +"One file conflict" => "Un conflicto de file", +"New Files" => "Nove files", +"Already existing files" => "Files jam existente", +"Which files do you want to keep?" => "Qual files tu vole mantener?", "Cancel" => "Cancellar", +"Continue" => "Continuar", +"Error loading file exists template" => "Error quando on incargava patrono de file existente", +"Very weak password" => "Contrasigno multo debile", +"Weak password" => "Contrasigno debile", +"So-so password" => "Contrasigno passabile", +"Good password" => "Contrasigno bon", +"Strong password" => "Contrasigno forte", +"Shared" => "Compartite", "Share" => "Compartir", "Error" => "Error", +"Error while sharing" => "Error quando on compartiva", +"Error while unsharing" => "Error quando on levava le compartir", +"Error while changing permissions" => "Error quando on modificava permissiones", +"Shared with you and the group {group} by {owner}" => "Compartite con te e le gruppo {group} per {owner}", +"Shared with you by {owner}" => "Compartite con te per {owner} ", +"Share with user or group …" => "Compartir con usator o gruppo ...", +"Share link" => "Compartir ligamine", +"Password protect" => "Protegite per contrasigno", "Password" => "Contrasigno", +"Allow Public Upload" => "Permitter incargamento public", +"Email link to person" => "Ligamine de e-posta a persona", "Send" => "Invia", +"Set expiration date" => "Fixa data de expiration", +"Expiration date" => "Data de expiration", +"Share via email:" => "Compartir via e-posta:", +"No people found" => "Il trovava nulle persona", "group" => "gruppo", +"Resharing is not allowed" => "Il non es permittite compartir plus que un vice", +"Shared in {item} with {user}" => "Compartite in {item} con {user}", "Unshare" => "Leva compartir", +"notify by email" => "notificar per message de e-posta", "can edit" => "pote modificar", +"access control" => "controlo de accesso", +"create" => "crear", +"update" => "actualisar", +"delete" => "deler", +"share" => "compartir", +"Password protected" => "Proteger con contrasigno", +"Error unsetting expiration date" => "Error quando on levava le data de expiration", +"Error setting expiration date" => "Error quando on fixava le data de expiration", +"Sending ..." => "Inviante ...", +"Email sent" => "Message de e-posta inviate", +"Warning" => "Aviso", +"The object type is not specified." => "Le typo de objecto non es specificate", +"Enter new" => "Inserta nove", "Delete" => "Deler", "Add" => "Adder", +"Edit tags" => "Modifica etiquettas", +"Please reload the page." => "Pro favor recarga le pagina.", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Le actualisation terminava sin successo. Pro favor tu reporta iste problema al ownCloud community.", +"The update was successful. Redirecting you to ownCloud now." => "Le actualisation terminava con successo. On redirige nunc a tu ownCloud.", +"%s password reset" => "%s contrasigno re-fixate", +"A problem has occurred whilst sending the email, please contact your administrator." => "Un problema ha occurrite quando on inviava le message de e-posta, pro favor continge tu administrator.", +"Use the following link to reset your password: {link}" => "Usa le ligamine sequente pro re-fixar tu contrasigno: {link}", "Username" => "Nomine de usator", +"Reset" => "Re-fixar", "Your password was reset" => "Tu contrasigno esseva reinitialisate", "To login page" => "al pagina de initio de session", "New password" => "Nove contrasigno", "Reset password" => "Reinitialisar contrasigno", +"For the best results, please consider using a GNU/Linux server instead." => "Pro le exitos melior, pro favor tu considera usar in loco un servitor GNU/Linux.", "Personal" => "Personal", "Users" => "Usatores", "Apps" => "Applicationes", "Admin" => "Administration", "Help" => "Adjuta", +"Error loading tags" => "Error quando on cargava etiquettas", +"Tag already exists" => "Etiquetta ja existe", "Access forbidden" => "Accesso prohibite", "Cloud not found" => "Nube non trovate", +"The share will expire on %s." => "Le compartir expirara le %s.", +"Cheers!" => "Acclamationes!", +"Security Warning" => "Aviso de securitate", +"Please update your PHP installation to use %s securely." => "Pro favor actualisa tu installation de PHP pro usar %s con securitate.", "Create an admin account" => "Crear un conto de administration", +"Storage & database" => "Immagazinage & base de datos", "Data folder" => "Dossier de datos", "Configure the database" => "Configurar le base de datos", "will be used" => "essera usate", "Database user" => "Usator de base de datos", "Database password" => "Contrasigno de base de datos", "Database name" => "Nomine de base de datos", +"Database tablespace" => "Spatio de tabella de base de datos", "Database host" => "Hospite de base de datos", +"Finish setup" => "Terminar configuration", +"Finishing …" => "Terminante ...", "Log out" => "Clauder le session", +"Automatic logon rejected!" => "Accesso de autorisation refusate!", +"Please change your password to secure your account again." => "Pro favor modifica tu contrasigno pro asssecurar de nove tu conto", +"Server side authentication failed!" => "Il falleva authentication de latere servitor!", +"Please contact your administrator." => "Pro favor continge tu administrator.", "Lost your password?" => "Tu perdeva le contrasigno?", "remember" => "memora", -"Log in" => "Aperir session" +"Log in" => "Aperir session", +"Alternative Logins" => "Accessos de autorisation alternative", +"Thank you for your patience." => "Gratias pro tu patientia." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 634ef3b764d..648e8ba3eaf 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -44,6 +44,8 @@ $TRANSLATIONS = array( "If you select both versions, the copied file will have a number added to its name." => "Dacă alegi ambele versiuni, fișierul copiat va avea un număr atașat la denumirea sa.", "Cancel" => "Anulare", "Continue" => "Continuă", +"Very weak password" => "Parolă foarte slabă", +"Weak password" => "Parolă slabă", "Shared" => "Partajat", "Share" => "Partajează", "Error" => "Eroare", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index d198b0d77c8..f24398c662d 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -139,9 +139,9 @@ $TRANSLATIONS = array( "Error unfavoriting" => "Fel av favorisering ", "Access forbidden" => "Åtkomst förbjuden", "Cloud not found" => "Hittade inget moln", -"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\n", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\n" => "Hej där!,\n\nVi vill bara meddela att %s delade %s med dig.\nTitta på den här: %s\n\n", "The share will expire on %s." => "Utdelningen kommer att upphöra %s.", -"Cheers!" => "Vi höres!", +"Cheers!" => "Ha de fint!", "Security Warning" => "Säkerhetsvarning", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)", "Please update your PHP installation to use %s securely." => "Var god uppdatera din PHP-installation för att använda %s säkert.", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 2bbfb6cd981..015183e6470 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -1,5 +1,6 @@ "Термін дії минув.", "Couldn't send mail to following users: %s " => "Неможливо надіслати пошту наступним користувачам: %s ", "Turned on maintenance mode" => "Увімкнено захищений режим", "Turned off maintenance mode" => "Вимкнено захищений режим", @@ -56,6 +57,10 @@ $TRANSLATIONS = array( "(all selected)" => "(все вибрано)", "({count} selected)" => "({count} вибрано)", "Error loading file exists template" => "Помилка при завантаженні файлу існуючого шаблону", +"Very weak password" => "Дуже слабкий пароль", +"Weak password" => "Слабкий пароль", +"Good password" => "Добрий пароль", +"Strong password" => "Надійний пароль", "Shared" => "Опубліковано", "Share" => "Поділитися", "Error" => "Помилка", @@ -115,6 +120,7 @@ $TRANSLATIONS = array( "To login page" => "До сторінки входу", "New password" => "Новий пароль", "Reset password" => "Скинути пароль", +"Mac OS X is not supported and %s will not work properly on this platform. Use it at your own risk! " => "Mac OS X не підтримується і %s не буде коректно працювати на цій платформі. Випробовуєте на свій риск!", "Personal" => "Особисте", "Users" => "Користувачі", "Apps" => "Додатки", @@ -161,6 +167,7 @@ $TRANSLATIONS = array( "remember" => "запам'ятати", "Log in" => "Вхід", "Alternative Logins" => "Альтернативні Логіни", +"Hey there,

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

" => "Агов,

просто щоб ви знали, що %s поділився »%s« з вами.
Подивіться!

", "This ownCloud instance is currently in single user mode." => "Цей екземпляр OwnCloud зараз працює в монопольному режимі одного користувача", "This means only administrators can use the instance." => "Це означає, що лише адміністратори можуть використовувати цей екземпляр.", "Contact your system administrator if this message persists or appeared unexpectedly." => "Зверніться до системного адміністратора, якщо це повідомлення зберігається або з'являєтья несподівано.", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index 600c8df9bdc..465ae0c7008 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -56,6 +56,11 @@ $TRANSLATIONS = array( "(all selected)" => "(已全選)", "({count} selected)" => "(已選 {count} 項)", "Error loading file exists template" => "載入檔案存在樣板出錯", +"Very weak password" => "非常弱的密碼", +"Weak password" => "弱的密碼", +"So-so password" => "普通的密碼", +"Good password" => "好的密碼", +"Strong password" => "很強的密碼", "Shared" => "已分享", "Share" => "分享", "Error" => "錯誤", diff --git a/l10n/ach/files.po b/l10n/ach/files.po index 3feea8b76a1..8f1326b553a 100644 --- a/l10n/ach/files.po +++ b/l10n/ach/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ach/lib.po b/l10n/ach/lib.po index b058b62142f..46c7a5046ee 100644 --- a/l10n/ach/lib.po +++ b/l10n/ach/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: ach\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ach/settings.po b/l10n/ach/settings.po index 06f42ada91f..55090fdda48 100644 --- a/l10n/ach/settings.po +++ b/l10n/ach/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Acoli (http://www.transifex.com/projects/p/owncloud/language/ach/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ady/lib.po b/l10n/ady/lib.po index ec381a0d66a..5bf5a1f8910 100644 --- a/l10n/ady/lib.po +++ b/l10n/ady/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: ady\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ady/settings.po b/l10n/ady/settings.po index 64fe376c032..cf24a69acf9 100644 --- a/l10n/ady/settings.po +++ b/l10n/ady/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Adyghe (http://www.transifex.com/projects/p/owncloud/language/ady/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the , 2014 # kalliet , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:53+0000\n" +"Last-Translator: HannesNell \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +46,7 @@ msgstr "" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Onbekende leertipe" #: avatar/controller.php:85 msgid "Invalid image" @@ -53,7 +54,7 @@ msgstr "" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" -msgstr "" +msgstr "Geen tydelike profiel foto beskikbaar nie, probeer weer" #: avatar/controller.php:135 msgid "No crop data provided" @@ -135,59 +136,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Instellings" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "" -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "sekondes gelede" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minute gelede" msgstr[1] "%n minute gelede" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "vandag" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "gister" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "verlede maand" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "verlede jaar" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "jare gelede" @@ -245,11 +246,11 @@ msgstr "" #: js/oc-dialogs.js:384 msgid "Cancel" -msgstr "" +msgstr "Kanseleer" #: js/oc-dialogs.js:394 msgid "Continue" -msgstr "" +msgstr "Gaan voort" #: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" @@ -306,7 +307,7 @@ msgstr "" #: js/share.js:178 msgid "Error while changing permissions" -msgstr "" +msgstr "Fout met verandering van regte" #: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" @@ -326,7 +327,7 @@ msgstr "" #: js/share.js:223 msgid "Password protect" -msgstr "" +msgstr "Beskerm met Wagwoord" #: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" @@ -334,7 +335,7 @@ msgstr "Wagwoord" #: js/share.js:230 msgid "Allow Public Upload" -msgstr "" +msgstr "Laat Publieke Oplaai toe" #: js/share.js:234 msgid "Email link to person" @@ -346,11 +347,11 @@ msgstr "Stuur" #: js/share.js:240 msgid "Set expiration date" -msgstr "" +msgstr "Stel verval datum" #: js/share.js:241 msgid "Expiration date" -msgstr "" +msgstr "Verval datum" #: js/share.js:277 msgid "Share via email:" @@ -362,7 +363,7 @@ msgstr "" #: js/share.js:324 js/share.js:385 msgid "group" -msgstr "" +msgstr "groep" #: js/share.js:357 msgid "Resharing is not allowed" @@ -370,7 +371,7 @@ msgstr "" #: js/share.js:401 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Gedeel in {item} met {user}" #: js/share.js:423 msgid "Unshare" @@ -386,27 +387,27 @@ msgstr "kan wysig" #: js/share.js:436 msgid "access control" -msgstr "" +msgstr "toegang beheer" #: js/share.js:439 msgid "create" -msgstr "" +msgstr "skep" #: js/share.js:442 msgid "update" -msgstr "" +msgstr "opdateer" #: js/share.js:445 msgid "delete" -msgstr "" +msgstr "uitvee" #: js/share.js:448 msgid "share" -msgstr "" +msgstr "deel" #: js/share.js:721 msgid "Password protected" -msgstr "" +msgstr "Beskerm met Wagwoord" #: js/share.js:734 msgid "Error unsetting expiration date" @@ -414,7 +415,7 @@ msgstr "" #: js/share.js:752 msgid "Error setting expiration date" -msgstr "" +msgstr "Fout met opstel van verval datum" #: js/share.js:777 msgid "Sending ..." @@ -442,7 +443,7 @@ msgstr "" #: js/tags.js:31 msgid "Add" -msgstr "" +msgstr "Voeg by" #: js/tags.js:39 msgid "Edit tags" @@ -465,7 +466,7 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Die opdateering was nie suksesvol nie. Raporteer die probleem by ownCloud community." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." @@ -474,7 +475,7 @@ msgstr "" #: lostpassword/controller.php:70 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s wagwoord herstel" #: lostpassword/controller.php:72 msgid "" @@ -495,7 +496,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:15 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +msgstr "Versoek het gefaal!
Het jy seker gemaak jou e-pos/gebruiker naam is korrek?" #: lostpassword/templates/lostpassword.php:18 msgid "You will receive a link to reset your password via Email." @@ -516,7 +517,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:27 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Ja, Ek wil regtig my wagwoord herstel" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" @@ -600,7 +601,7 @@ msgstr "" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Toegang verbode" #: templates/404.php:15 msgid "Cloud not found" @@ -628,16 +629,16 @@ msgstr "" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 msgid "Security Warning" -msgstr "" +msgstr "Sekuriteits waarskuwing" #: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Jou PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Opdateer asseblief jou PHP instelasie om %s veilig te gebruik" #: templates/installation.php:33 msgid "" @@ -655,14 +656,14 @@ msgstr "" msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Jou data gids en leers is moontlik toeganklik vanaf die internet omdat die .htaccess leer nie werk nie." #: templates/installation.php:42 #, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Vir inligting oor hoe om jou bediener behoorlik op te stel, sien asseblief diedokumentasie." #: templates/installation.php:48 msgid "Create an admin account" @@ -674,7 +675,7 @@ msgstr "" #: templates/installation.php:77 msgid "Data folder" -msgstr "" +msgstr "Data vouer" #: templates/installation.php:90 msgid "Configure the database" @@ -698,11 +699,11 @@ msgstr "Databasis naam" #: templates/installation.php:132 msgid "Database tablespace" -msgstr "" +msgstr "Databasis tabelspasie" #: templates/installation.php:140 msgid "Database host" -msgstr "" +msgstr "Databasis gasheer" #: templates/installation.php:150 msgid "Finish setup" @@ -722,7 +723,7 @@ msgstr "" #: templates/layout.user.php:44 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s is beskikbaar. Kry meer inligting oor opdatering." #: templates/layout.user.php:74 templates/singleuser.user.php:8 msgid "Log out" @@ -730,7 +731,7 @@ msgstr "Teken uit" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Automatiese aantekening afgekeur!" #: templates/login.php:10 msgid "" @@ -740,7 +741,7 @@ msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Verander asseblief jou wagwoord om jou rekening te beveilig" #: templates/login.php:17 msgid "Server side authentication failed!" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index 30b5a5ae9ae..c6733f80702 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 1f22386958d..7e3987e6ebd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -55,7 +63,7 @@ msgstr "" #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Onbekende leertipe" #: private/avatar.php:71 msgid "Invalid image" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index b8e7b43bf5d..11cade389f8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -348,7 +348,7 @@ msgstr "" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" -msgstr "" +msgstr "Sekuriteits waarskuwing" #: templates/admin.php:50 #, php-format @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ak/lib.po b/l10n/ak/lib.po index 496d2a7f1df..b55a9ef3dea 100644 --- a/l10n/ak/lib.po +++ b/l10n/ak/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: ak\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ak/settings.po b/l10n/ak/settings.po index 92e383c7012..aba30a77dc9 100644 --- a/l10n/ak/settings.po +++ b/l10n/ak/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Akan (http://www.transifex.com/projects/p/owncloud/language/ak/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/am_ET/lib.po b/l10n/am_ET/lib.po index 4f1c550a53b..e8c8371d582 100644 --- a/l10n/am_ET/lib.po +++ b/l10n/am_ET/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: am_ET\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/am_ET/settings.po b/l10n/am_ET/settings.po index 6c609cd16f8..bc72585fe7c 100644 --- a/l10n/am_ET/settings.po +++ b/l10n/am_ET/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Amharic (Ethiopia) (http://www.transifex.com/projects/p/owncloud/language/am_ET/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,59 +175,55 @@ msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق ال msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "شارك" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "حدث خطأ أثناء نقل الملف" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "خطأ" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "لا يوجد مجلدات %n" @@ -237,7 +233,7 @@ msgstr[3] "عدد قليل من مجلدات %n" msgstr[4] "عدد كبير من مجلدات %n" msgstr[5] "مجلدات %n" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "لا يوجد ملفات %n" @@ -247,11 +243,11 @@ msgstr[3] "قليل من ملفات %n" msgstr[4] "الكثير من ملفات %n" msgstr[5] " ملفات %n" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} و {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "لا يوجد ملفات %n لتحميلها" @@ -261,60 +257,56 @@ msgstr[3] "يتم تحميل عدد قليل من ملفات %n" msgstr[4] "يتم تحميل عدد كبير من ملفات %n" msgstr[5] "يتم تحميل ملفات %n" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "مساحتك التخزينية ممتلئة, لا يمكم تحديث ملفاتك أو مزامنتها بعد الآن !" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "مساحتك التخزينية امتلأت تقريبا " -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "تم تمكين تشفير البرامج لكن لم يتم تهيئة المفاتيح لذا يرجى تسجيل الخروج ثم تسجيل الدخول مرة آخرى." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "المفتاح الخاص بتشفير التطبيقات غير صالح. يرجى تحديث كلمة السر الخاصة بالمفتاح الخاص من الإعدادت الشخصية حتى تتمكن من الوصول للملفات المشفرة." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "تم تعطيل التشفير لكن ملفاتك لا تزال مشفرة. فضلا اذهب إلى الإعدادات الشخصية لإزالة التشفير عن ملفاتك." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "اسم" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "حجم" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "معدل" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s لا يمكن إعادة تسميته. " diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 92ff9686448..7271b011448 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "الرجاء التحقق من دليل التنصيب. msgid "%s shared »%s« with you" msgstr "%s شارك »%s« معك" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index d8954db88ce..6c4f418f12b 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "تم ارسال البريد الالكتروني" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "وضعية الإرسال" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "التشفير" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "أسلوب التطابق" @@ -526,91 +526,111 @@ msgstr "السماح بتنبيهات البريد الالكتروني." msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "حماية" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "اجبار العميل للاتصال بـ %s عن طريق اتصال مشفر" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "يرجى الاتصال بـ %s عن طريق HTTPS لتفعيل او تعطيل SSL enforcement." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "خادم البريد الالكتروني" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "عنوان الخادم" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "المنفذ" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "سجل" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "المزيد" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "أقل" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "إصدار" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome inválidu, los caráuteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" nun tán permitíos." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renomar" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fallu" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamañu" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ast/lib.po b/l10n/ast/lib.po index cf11aa5cedb..cfd280ca4b8 100644 --- a/l10n/ast/lib.po +++ b/l10n/ast/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,14 @@ msgstr "" "Language: ast\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ast/settings.po b/l10n/ast/settings.po index ee7ed5a49c9..6264d9ffecf 100644 --- a/l10n/ast/settings.po +++ b/l10n/ast/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Asturian (http://www.transifex.com/projects/p/owncloud/language/ast/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "Corréu unviáu" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Cifráu" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Puertu" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Más" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/az/lib.po b/l10n/az/lib.po index 4ca3ad7e7c9..d41bf8bc5a7 100644 --- a/l10n/az/lib.po +++ b/l10n/az/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: az\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/az/settings.po b/l10n/az/settings.po index e9de38850fb..bcc8f73536b 100644 --- a/l10n/az/settings.po +++ b/l10n/az/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Azerbaijani (http://www.transifex.com/projects/p/owncloud/language/az/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,59 +173,55 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Памылка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -233,7 +229,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -241,11 +237,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -253,60 +249,56 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 1ec5525d65f..52a04981ca9 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 1f6747d53d5..dea28e9ad67 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Споделяне" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Грешка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Размер" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Променено" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index c1d33cccfdb..fa5dd98bf5f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:53+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" @@ -17,7 +17,7 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/share.js:13 +#: js/share.js:33 msgid "Shared by {owner}" msgstr "" @@ -60,7 +60,7 @@ msgstr "" #: templates/public.php:17 #, php-format msgid "shared by %s" -msgstr "" +msgstr "споделено от %s" #: templates/public.php:44 #, php-format diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 04985c07165..be92245e986 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "Моля направете повторна справка с ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠ msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "ভাগাভাগি কর" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "সমস্যা" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "রাম" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "আকার" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "পরিবর্তিত" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 6287668a6ca..52617193577 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 8dfd63b8a15..99ae0a7f08a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "ই-মেইল পাঠানো হয়েছে" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "সংকেতায়ন" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "সার্ভার ঠিকানা" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "পোর্ট" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "বেশী" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "কম" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,137 +173,129 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Podijeli" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Veličina" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 5899b4927c1..ab0f8df8df7 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: bs\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/bs/settings.po b/l10n/bs/settings.po index b58fd383af9..ecad7263e70 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "La carpeta de destí s'ha mogut o eliminat." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,134 +177,126 @@ msgstr "Hi ha una pujada en curs. Si abandoneu la pàgina la pujada es cancel·l msgid "URL cannot be empty" msgstr "L'URL no pot ser buit" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "A la carpeta inici 'Compartit' és un nom de fitxer reservat" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "No s'ha pogut crear el fitxer" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "No s'ha pogut crear la carpeta" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Error en obtenir la URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Comparteix" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Error en moure el fitxer" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendent" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "No es pot canviar el nom de fitxer" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Error en esborrar el fitxer." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetes" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fitxer" msgstr[1] "%n fitxers" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Pujant %n fitxer" msgstr[1] "Pujant %n fitxers" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" no es un fitxer vàlid." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "El vostre espai d'emmagatzemament és ple, els fitxers ja no es poden actualitzar o sincronitzar!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "L'aplicació d'encriptació està activada però les claus no estan inicialitzades, sortiu i acrediteu-vos de nou." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "La clau privada de l'aplicació d'encriptació no és vàlida! Actualitzeu la contrasenya de la clau privada a l'arranjament personal per recuperar els fitxers encriptats." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "L'encriptació s'ha desactivat però els vostres fitxers segueixen encriptats. Aneu a la vostra configuració personal per desencriptar els vostres fitxers." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Mida" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificat" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' és reservat" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s no es pot canviar el nom" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 7ae52349949..5a980809bc9 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "Comproveu les guies d'instal·lació." msgid "%s shared »%s« with you" msgstr "%s ha compartit »%s« amb tu" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 8a8a6b05b80..1ab2d84629f 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "El correu electrónic s'ha enviat" msgid "You need to set your user email before being able to send test emails." msgstr "Heu d'establir un nom d'usuari abans de poder enviar correus de prova." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Mode d'enviament" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Xifrat" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Mètode d'autenticació" @@ -526,91 +526,111 @@ msgstr "Permet notificacions per correu electrónic" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Força la connexió dels clients a %s a través d'una connexió encriptada." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connecteu a %s a través de HTTPS per habilitar o inhabilitar l'accés SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Servidor de correu" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "S'usa per enviar notificacions." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Des de l'adreça" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Es requereix autenticació" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adreça del servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credencials" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nom d'usuari SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Contrasenya SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Prova l'arranjament del correu" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Envia correu" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Registre" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Més" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menys" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versió" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the , 2013 # Honza K. , 2013 # liska_, 2013-2014 +# xmorave2 , 2014 # cvanca , 2013 # m23 , 2014 # pstast , 2013 @@ -15,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -35,7 +36,7 @@ msgstr "Nelze přesunout %s - již existuje soubor se stejným názvem" msgid "Could not move %s" msgstr "Nelze přesunout %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Název souboru nemůže být prázdný řetězec." @@ -44,18 +45,18 @@ msgstr "Název souboru nemůže být prázdný řetězec." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" je neplatným názvem souboru." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Cílová složka byla přesunuta nebo smazána." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -181,137 +182,129 @@ msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení msgid "URL cannot be empty" msgstr "URL nemůže zůstat prázdná" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "V osobní složce je název 'Shared' rezervovaný" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Nepodařilo se vytvořit soubor" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Nepodařilo se vytvořit složku" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Chyba při načítání URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Sdílet" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Chyba při přesunu souboru" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Chyba" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Nevyřízené" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Nepodařilo se přejmenovat soubor" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Chyba při mazání souboru." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n složka" msgstr[1] "%n složky" msgstr[2] "%n složek" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n soubor" msgstr[1] "%n soubory" msgstr[2] "%n souborů" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávám %n soubor" msgstr[1] "Nahrávám %n soubory" msgstr[2] "Nahrávám %n souborů" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" je neplatným názvem souboru." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikace pro šifrování je zapnuta, ale vaše klíče nejsou inicializované. Prosím odhlaste se a znovu přihlaste" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Chybný soukromý klíč pro šifrovací aplikaci. Aktualizujte prosím heslo svého soukromého klíče ve vašem osobním nastavení, abyste znovu získali přístup k vašim zašifrovaným souborům." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrování bylo vypnuto, vaše soubory jsou však stále zašifrované. Běžte prosím do osobního nastavení, kde soubory odšifrujete." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Název" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Velikost" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Upraveno" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Neplatný název složky. Použití 'Shared' je rezervováno." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s nemůže být přejmenován" @@ -319,7 +312,7 @@ msgstr "%s nemůže být přejmenován" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Nahrát (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index d0af5364146..bcc99c8b2a3 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -6,6 +6,7 @@ # Honza K. , 2013 # liska_, 2013 # svetlemodry , 2014 +# xmorave2 , 2014 # m23 , 2014 # pstast , 2013-2014 # Tomáš Chvátal , 2013 @@ -13,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -23,6 +24,14 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -290,99 +299,104 @@ msgstr "Zkonzultujte, prosím, průvodce instalací." msgid "%s shared »%s« with you" msgstr "%s s vámi sdílí »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Sdílení položky %s selhalo, protože uživatel %s je jejím vlastníkem" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Sdílení položky %s selhalo, protože uživatel %s neexistuje" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Sdílení položky %s selhalo, protože uživatel %s není členem žádné skupiny společné s uživatelem %s" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Sdílení položky %s selhalo, protože položka již je s uživatelem %s sdílená" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Sdílení položky %s selhalo, protože skupina %s neexistuje" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Sdílení položky %s selhalo, protože uživatel %s není členem skupiny %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 6b6765065a5..ee503daeb02 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 20:00+0000\n" -"Last-Translator: svetlemodry \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -55,15 +55,15 @@ msgstr "E-mail odeslán" msgid "You need to set your user email before being able to send test emails." msgstr "Pro možnost odeslání zkušebních e-mailů musíte nejprve nastavit svou e-mailovou adresu." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Mód odesílání" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Šifrování" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Metoda ověření" @@ -531,91 +531,111 @@ msgstr "Povolit e-mailová upozornění" msgid "Allow users to send mail notification for shared files" msgstr "Povolit uživatelům odesílat e-mailová upozornění pro sdílené soubory" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynutí připojování klientů k %s šifrovaným spojením." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-mailový server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Toto se používá pro odesílání upozornění." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Adresa odesílatele" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Vyžadováno ověření" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresa serveru" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Přihlašovací údaje" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP uživatelské jméno " -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP heslo" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Otestovat nastavení e-mailu" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Odeslat e-mail" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Záznam" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Úroveň zaznamenávání" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Více" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Méně" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Verze" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,59 +173,55 @@ msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} yn bodoli'n barod" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Rhannu" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Gwall" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "I ddod" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" @@ -233,7 +229,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" @@ -241,11 +237,11 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" @@ -253,60 +249,56 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Enw" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Maint" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Addaswyd" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index d9647cd3f3c..19a1e5e7945 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Gwiriwch y canllawiau gosod eto." msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index 21bd860c848..61d870daf08 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Anfonwyd yr e-bost" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Amgryptiad" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Mappen er blevet slettet eller fjernet." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -178,134 +178,126 @@ msgstr "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuler msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Navnet 'Shared' er reserveret i hjemmemappen." - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Kunne ikke oprette fil" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Kunne ikke oprette mappe" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Fejl ved URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Del" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Fejl ved flytning af fil" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fejl" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Kunne ikke omdøbe filen" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Fejl ved sletnign af fil." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploader %n fil" msgstr[1] "Uploader %n filer" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "'{name}' er et ugyldigt filnavn." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Din opbevaringsplads er fyldt op, filer kan ikke opdateres eller synkroniseres længere!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Krypteringsprogrammet er aktiveret, men din nøgle er ikke igangsat. Log venligst ud og ind igen." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ugyldig privat nøgle for krypteringsprogrammet. Opdater venligst dit kodeord for den private nøgle i dine personlige indstillinger. Det kræves for at få adgang til dine krypterede filer." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Krypteringen blev deaktiveret, men dine filer er stadig krypteret. Gå venligst til dine personlige indstillinger for at dekryptere dine filer. " -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Størrelse" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Ændret" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ugyldig mappenavn. 'Shared' er reserveret." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s kunne ikke omdøbes" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index d669abb752d..dc85a7ff6b1 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,6 +21,14 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,99 +296,104 @@ msgstr "Dobbelttjek venligst installations vejledningerne." msgid "%s shared »%s« with you" msgstr "%s delte »%s« med sig" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 4d63d7d4278..3eee6bae03f 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -51,15 +51,15 @@ msgstr "E-mail afsendt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -527,91 +527,111 @@ msgstr "Tillad mail underretninger" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tving klienten til at forbinde til %s via en kryptetet forbindelse." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Email Server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Fra adresse" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Godkendelse påkrævet" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Serveradresse" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Brugeroplysninger" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP Brugernavn" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP Kodeord" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Test email indstillinger" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Send email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mere" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,7 +35,7 @@ msgstr "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert berei msgid "Could not move %s" msgstr "Konnte %s nicht verschieben" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Der Dateiname darf nicht leer sein." @@ -44,18 +44,18 @@ msgstr "Der Dateiname darf nicht leer sein." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" ist kein gültiger Dateiname." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Der Zielordner wurde verschoben oder gelöscht." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -181,134 +181,126 @@ msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload a msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" msgstr[1] "%n Dateien werden hochgeladen" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" ist kein gültiger Dateiname." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Dein Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Dein Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Die Verschlüsselung-App ist aktiviert, aber Deine Schlüssel sind nicht initialisiert. Bitte melden Dich nochmals ab und wieder an." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisiere Dein privates Schlüssel-Passwort, um den Zugriff auf Deine verschlüsselten Dateien wiederherzustellen." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Deine Dateien nach wie vor verschlüsselt. Bitte gehe zu Deinen persönlichen Einstellungen, um Deine Dateien zu entschlüsseln." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Größe" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Geändert" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index fb985f57f25..c7539f4d643 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -4,7 +4,7 @@ # # Translators: # I Robot, 2014 -# Mario Siegmann , 2013 +# Mario Siegmann , 2013-2014 # ninov , 2013 # stefanniedermann , 2014 # noxin , 2013 @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,14 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -290,103 +298,108 @@ msgstr "Bitte prüfe die Installationsanleitungen." msgid "%s shared »%s« with you" msgstr "%s teilte »%s« mit Dir" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s Besitzer des Objektes ist" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s nicht existiert" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s kein Gruppenmitglied einer der Gruppen von %s ist" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Gruppe %s nicht existiert" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da %s kein Mitglied der Gruppe %s ist" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht erlaubt ist" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Freigabetyp %s ist nicht gültig für %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Freigabe-Backend %s nicht gefunden" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Datei im Datei-Cache nicht gefunden werden konnte" #: private/tags.php:193 #, php-format diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 70f58f382ad..5fc2929ecc8 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 09:40+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,15 +56,15 @@ msgstr "E-Mail wurde verschickt" msgid "You need to set your user email before being able to send test emails." msgstr "Du musst zunächst deine Benutzer-E-Mail-Adresse setzen, bevor du Test-E-Mail verschicken kannst." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Authentifizierungsmethode" @@ -532,91 +532,111 @@ msgstr "Mail-Benachrichtigung erlauben" msgid "Allow users to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinde dich zu deinem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-Mail-Server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Dies wird zum Senden von Benachrichtigungen verwendet." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Absender-Adresse" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Authentifizierung benötigt" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Zugangsdaten" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP Benutzername" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP Passwor" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Teste E-Mail-Einstellunge" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Sende E-Mail" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mehr" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Weniger" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Freigeben" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index dda2e8bf4ec..12860020a35 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: de_AT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_AT/settings.po b/l10n/de_AT/settings.po index d91974e8a4b..75bd12b6bd2 100644 --- a/l10n/de_AT/settings.po +++ b/l10n/de_AT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -48,15 +48,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -182,134 +182,126 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n Ordner" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n Dateien" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hochgeladen" msgstr[1] "%n Dateien werden hochgeladen" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Grösse" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Geändert" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index 24f9b93858a..6a17ffebe32 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -21,6 +21,14 @@ msgstr "" "Language: de_CH\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,99 +296,104 @@ msgstr "Bitte prüfen Sie die Installationsanleitungen." msgid "%s shared »%s« with you" msgstr "%s teilt »%s« mit Ihnen" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po index 4165f28b4be..89ffb2a4358 100644 --- a/l10n/de_CH/settings.po +++ b/l10n/de_CH/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" @@ -56,15 +56,15 @@ msgstr "Email gesendet" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -532,91 +532,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mehr" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Weniger" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Der Ziel-Ordner wurde verschoben oder gelöscht." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -184,134 +184,126 @@ msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload msgid "URL cannot be empty" msgstr "Die URL darf nicht leer sein" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Das Benutzerverzeichnis 'Shared' ist ein reservierter Dateiname" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Die Datei konnte nicht erstellt werden" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Der Ordner konnte nicht erstellt werden" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Fehler beim Abrufen der URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Teilen" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Fehler beim Verschieben der Datei" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Die Datei konnte nicht umbenannt werden" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Fehler beim Löschen der Datei." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n Ordner" msgstr[1] "%n Ordner" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n Datei" msgstr[1] "%n Dateien" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} und {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n Datei wird hoch geladen" msgstr[1] "%n Dateien werden hoch geladen" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" ist kein gültiger Dateiname." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Verschlüsselung-App ist aktiviert, aber Ihre Schlüssel sind nicht initialisiert. Bitte melden sich nochmals ab und wieder an." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ungültiger privater Schlüssel für die Verschlüsselung-App. Bitte aktualisieren Sie Ihr privates Schlüssel-Passwort, um den Zugriff auf Ihre verschlüsselten Dateien wiederherzustellen." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Die Verschlüsselung wurde deaktiviert, jedoch sind Ihre Dateien nach wie vor verschlüsselt. Bitte gehen Sie zu Ihren persönlichen Einstellungen, um Ihre Dateien zu entschlüsseln." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Größe" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Geändert" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ungültiger Verzeichnisname. Die Nutzung von 'Shared' ist reserviert." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s konnte nicht umbenannt werden" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 4447942d676..4b4f75e1af1 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -4,7 +4,7 @@ # # Translators: # I Robot, 2014 -# Mario Siegmann , 2013 +# Mario Siegmann , 2013-2014 # stefanniedermann , 2014 # traductor, 2013 # noxin , 2013 @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,14 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -290,103 +298,108 @@ msgstr "Bitte prüfen Sie die Installationsanleitungen." msgid "%s shared »%s« with you" msgstr "%s hat »%s« mit Ihnen geteilt" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s Besitzer des Objektes ist" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s nicht existiert" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s kein Gruppenmitglied einer der Gruppen von %s ist" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Gruppe %s nicht existiert" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da %s kein Mitglied der Gruppe %s ist" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht erlaubt ist" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Freigabetyp %s ist nicht gültig für %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Freigabe-Backend %s nicht gefunden" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Freigabe-Backend für %s nicht gefunden" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Freigabe von %s fehlgeschlagen, da die Datei im Datei-Cache nicht gefunden werden konnte" #: private/tags.php:193 #, php-format diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 6d79de897ed..0451f768d6c 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 09:40+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -56,15 +56,15 @@ msgstr "Email gesendet" msgid "You need to set your user email before being able to send test emails." msgstr "Sie müssen Ihre Benutzer-E-Mail-Adresse setzen, bevor Sie Test-E-Mails versenden können." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Sende-Modus" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Verschlüsselung" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Authentifizierungsmethode" @@ -532,91 +532,111 @@ msgstr "Mail-Benachrichtigung erlauben" msgid "Allow users to send mail notification for shared files" msgstr "Benutzern erlauben Mail-Benachrichtigungen für freigegebene Dateien zu senden" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Zwingt die clientseitigen Anwendungen, verschlüsselte Verbindungen zu %s herzustellen." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-Mail-Server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Dies wird für das Senden von Benachrichtigungen verwendet." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Absender-Adresse" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Authentifizierung benötigt" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresse des Servers" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Zugangsdaten" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP Benutzername" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP Passwort" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "E-Mail-Einstellungen testen" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "E-Mail senden" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mehr" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Weniger" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Ο φάκελος προορισμού έχει μετακινηθεί ή διαγραφεί." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -180,134 +180,126 @@ msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέ msgid "URL cannot be empty" msgstr "Η URL δεν πρέπει να είναι κενή" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Στον αρχικό φάκελο το όνομα 'Shared' διατηρείται από το σύστημα" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Αδυναμία δημιουργίας αρχείου" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Αδυναμία δημιουργίας φακέλου" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Σφάλμα φόρτωσης URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Διαμοιρασμός" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Σφάλμα κατά τη μετακίνηση του αρχείου" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Σφάλμα" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Αδυναμία μετονομασίας αρχείου" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Σφάλμα διαγραφής αρχείου." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n φάκελος" msgstr[1] "%n φάκελοι" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n αρχείο" msgstr[1] "%n αρχεία" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{Κατάλογοι αρχείων} και {αρχεία}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Ανέβασμα %n αρχείου" msgstr[1] "Ανέβασμα %n αρχείων" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "Το \"{name}\" είναι μη έγκυρο όνομα αρχείου." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Η εφαρμογή κρυπτογράφησης είναι ενεργοποιημένη αλλά τα κλειδιά σας δεν έχουν καταγραφεί, παρακαλώ αποσυνδεθείτε και επανασυνδεθείτε." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Άκυρο προσωπικό κλειδί για την εφαρμογή κρυπτογράφησης. Παρακαλώ ενημερώστε τον κωδικό του προσωπικού κλειδίου σας στις προσωπικές ρυθμίσεις για να επανακτήσετε πρόσβαση στα κρυπτογραφημένα σας αρχεία." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Η κρυπτογράφηση απενεργοποιήθηκε, αλλά τα αρχεία σας είναι ακόμα κρυπτογραφημένα. Παρακαλούμε απενεργοποιήσετε την κρυπτογράφηση αρχείων από τις προσωπικές σας ρυθμίσεις" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Όνομα" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Τροποποιήθηκε" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Άκυρο όνομα φακέλου. Η χρήση του 'Shared' διατηρείται από το σύστημα." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "Αδυναμία μετονομασίας του %s" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index edea3a7e211..7cf1c93e429 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -22,6 +22,14 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -289,99 +297,104 @@ msgstr "Ελέγξτε ξανά τις οδηγίες εγκατά msgid "%s shared »%s« with you" msgstr "Ο %s διαμοιράστηκε μαζί σας το »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 72799b9f58e..7fdf75d6674 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -56,15 +56,15 @@ msgstr "Το Email απεστάλη " msgid "You need to set your user email before being able to send test emails." msgstr "Πρέπει να ορίσετε το email του χρήστη πριν να είστε σε θέση να στείλετε δοκιμαστικά emails." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Κατάσταση αποστολής" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Κρυπτογράφηση" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Μέθοδος πιστοποίησης" @@ -532,91 +532,111 @@ msgstr "Επιτρέπονται ειδοποιήσεις ηλεκτρονικο msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Επιβάλλει τους πελάτες να συνδέονται στο %s μέσω κρυπτογραφημένης σύνδεσης." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Παρακαλώ συνδεθείτε στο %s σας μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή του SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Διακομιστής Email" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Χρησιμοποιείται για αποστολή ειδοποιήσεων." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Από τη διεύθυνση" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Απαιτείται πιστοποίηση" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Διεύθυνση διακομιστή" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Θύρα" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Πιστοποιητικά" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Όνομα χρήστη SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Συνθηματικό SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Δοκιμή ρυθμίσεων email" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Αποστολή email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index 5a7e2c17467..9029e8c7d14 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/en@pirate/settings.po b/l10n/en@pirate/settings.po index 718ec237746..7665c3704c1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,7 +28,7 @@ msgstr "Could not move %s - File with this name already exists" msgid "Could not move %s" msgstr "Could not move %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "File name cannot be empty." @@ -37,18 +37,18 @@ msgstr "File name cannot be empty." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" is an invalid file name." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Invalid name: '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "The target folder has been moved or deleted." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,134 +174,126 @@ msgstr "File upload is in progress. Leaving the page now will cancel the upload. msgid "URL cannot be empty" msgstr "URL cannot be empty" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "In the home folder 'Shared' is a reserved file name" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} already exists" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Could not create file" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Could not create folder" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Error fetching URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Share" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Delete permanently" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Rename" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Error moving file" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pending" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Could not rename file" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Error deleting file." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" msgstr[1] "%n folders" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n files" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} and {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Uploading %n file" msgstr[1] "Uploading %n files" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" is an invalid file name." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Your storage is full, files can not be updated or synced anymore!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Encryption App is enabled but your keys are not initialised, please log-out and log-in again" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Invalid private key for Encryption App. Please update your private key password in your personal settings to recover access to your encrypted files." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encryption was disabled but your files are still encrypted. Please go to your personal settings to decrypt your files." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Size" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modified" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Invalid folder name. Usage of 'Shared' is reserved." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s could not be renamed" diff --git a/l10n/en_GB/lib.po b/l10n/en_GB/lib.po index 0d6696a6176..11fdcf4ddc0 100644 --- a/l10n/en_GB/lib.po +++ b/l10n/en_GB/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,14 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,103 +293,108 @@ msgstr "Please double check the installation guides." msgid "%s shared »%s« with you" msgstr "%s shared \"%s\" with you" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Sharing %s failed, because the user %s is the item owner" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Sharing %s failed, because the user %s does not exist" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Sharing %s failed, because this item is already shared with %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Sharing %s failed, because the group %s does not exist" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Sharing %s failed, because %s is not a member of the group %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Sharing %s failed, because sharing with links is not allowed" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Share type %s is not valid for %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Setting permissions for %s failed, because the permissions exceed permissions granted to %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Setting permissions for %s failed, because the item was not found" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Sharing backend %s must implement the interface OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Sharing backend %s not found" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Sharing backend for %s not found" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Sharing %s failed, because the user %s is the original sharer" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Sharing %s failed, because the permissions exceed permissions granted to %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Sharing %s failed, because resharing is not allowed" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Sharing %s failed, because the sharing backend for %s could not find its source" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Sharing %s failed, because the file could not be found in the file cache" #: private/tags.php:193 #, php-format diff --git a/l10n/en_GB/settings.po b/l10n/en_GB/settings.po index 6b178f05eba..07dbb86c488 100644 --- a/l10n/en_GB/settings.po +++ b/l10n/en_GB/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 11:31+0000\n" -"Last-Translator: mnestis \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" +"Last-Translator: I Robot\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,15 +48,15 @@ msgstr "Email sent" msgid "You need to set your user email before being able to send test emails." msgstr "You need to set your user email before being able to send test emails." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Send mode" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Encryption" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Authentication method" @@ -524,91 +524,111 @@ msgstr "Allow mail notification" msgid "Allow users to send mail notification for shared files" msgstr "Allow users to send mail notification for shared files" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Security" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Enforce HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forces the clients to connect to %s via an encrypted connection." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Email Server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "This is used for sending out notifications." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "From address" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Authentication required" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Server address" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credentials" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP Username" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP Password" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Test email settings" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Send email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log level" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "More" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Less" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,134 +174,126 @@ msgstr "Dosieralŝuto plenumiĝas. Lasi la paĝon nun nuligus la alŝuton." msgid "URL cannot be empty" msgstr "La URL ne povas malpleni" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Ne povis kreiĝi dosiero" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Ne povis kreiĝi dosierujo" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Kunhavigi" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Eraris movo de dosiero" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Eraro" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Ne povis alinomiĝi dosiero" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosierujo" msgstr[1] "%n dosierujoj" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosiero" msgstr[1] "%n dosieroj" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} kaj {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Alŝutatas %n dosiero" msgstr[1] "Alŝutatas %n dosieroj" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Via memoro plenas, ne plu eblas ĝisdatigi aŭ sinkronigi dosierojn!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Via memoro preskaŭ plenas ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nomo" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Grando" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modifita" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s ne povis alinomiĝi" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 3943f0c74ce..d30a8b2f4aa 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "Bonvolu duoble kontroli la gvidilon por instalo." msgid "%s shared »%s« with you" msgstr "%s kunhavigis “%s” kun vi" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index b5865f264bc..576e1faca11 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "La retpoŝtaĵo sendiĝis" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Ĉifrado" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Servila adreso" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Pordo" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Aŭtentigiloj" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Pli" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Malpli" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Eldono" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the , 2013 # japaol , 2013 # juanman , 2013 -# mikelanabitarte , 2013 +# mikelanabitarte , 2013 +# plaguna , 2014 # Raul Fernandez Garcia , 2013 # qdneren , 2013 # Rubén del Campo , 2013 @@ -17,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -37,7 +38,7 @@ msgstr "No se pudo mover %s - Ya existe un archivo con ese nombre." msgid "Could not move %s" msgstr "No se pudo mover %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "El nombre de archivo no puede estar vacío." @@ -46,18 +47,18 @@ msgstr "El nombre de archivo no puede estar vacío." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" es un nombre de archivo inválido." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "La carpeta destino fue movida o eliminada." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -183,134 +184,126 @@ msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "En la carpeta home, no se puede usar 'Shared'" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Error al descargar URL." -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Error moviendo archivo" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Error al borrar el archivo" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" msgstr[1] "Subiendo %n archivos" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" es un nombre de archivo inválido." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "La app de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "La clave privada no es válida para la app de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" @@ -318,7 +311,7 @@ msgstr "%s no pudo ser renombrado" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Subida (máx. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index aa43afb5155..ab62540ee17 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -5,6 +5,7 @@ # Translators: # Art O. Pal , 2014 # Dharth , 2013 +# inye , 2014 # pablomillaquen , 2013 # Raul Fernandez Garcia , 2013 # Rubén del Campo , 2013 @@ -14,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -24,6 +25,14 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -291,103 +300,108 @@ msgstr "Por favor, vuelva a comprobar las guías de instalación, 2013 # Jose Luis Tirado , 2014 # juanman , 2013-2014 +# plaguna , 2014 # pablomillaquen , 2013 # Raul Fernandez Garcia , 2013 # qdneren , 2013 @@ -21,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -61,15 +62,15 @@ msgstr "Correo electrónico enviado" msgid "You need to set your user email before being able to send test emails." msgstr "Tiene que configurar su dirección de correo electrónico antes de poder enviar mensajes de prueba." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Cifrado" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Método de autenticación" @@ -535,93 +536,113 @@ msgstr "Permitir notificaciones por correo electrónico" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos" + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación de SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Servidor de correo electrónico" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Esto se usa para enviar notificaciones." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Desde la dirección" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Se necesita autenticación" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Puerto" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenciales" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nombre de usuario SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Contraseña SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Probar configuración de correo electrónico" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Enviar mensaje" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Registro" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Más" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versión" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the , 2014 # Jose Luis Tirado , 2014 # Maenso , 2013 +# plaguna , 2014 # Raul Fernandez Garcia , 2013 # ordenet , 2013 # Rodrigo Rodríguez , 2013 @@ -17,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 15:00+0000\n" +"Last-Translator: plaguna \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" @@ -96,43 +97,43 @@ msgstr "Éxito" msgid "Error" msgstr "Error" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "Configuración Correcta" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "Configuración Incorrecta" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "Seleccionar la clase de objeto" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "La prueba de conexión fue exitosa" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "La prueba de conexión falló" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea eliminar la configuración actual del servidor?" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "Confirmar eliminación" @@ -154,7 +155,7 @@ msgstr[1] "Usuarios %s encontrados" msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "No se puede encontrar la función deseada." @@ -431,14 +432,14 @@ msgstr "Cuando se active, se permitirán grupos que contenga otros grupos (solo #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Tamaño de los fragmentos de paginación" #: templates/settings.php:40 msgid "" "Chunksize used for paged LDAP searches that may return bulky results like " "user or group enumeration. (Setting it 0 disables paged LDAP searches in " "those situations.)" -msgstr "" +msgstr "Tamaño de los fragmentos usado para búsquedas LDAP paginadas que pueden devolver resultados voluminosos, como enumeración de usuarios o de grupos. (Si se establece en 0, se deshabilitan las búsquedas LDAP paginadas en esas situaciones.)" #: templates/settings.php:42 msgid "Special Attributes" diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index aa1b502cbe3..4ada9f6091a 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 20:10+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" @@ -136,59 +136,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Configuración" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Guardando..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "Hace %n minuto" msgstr[1] "Hace %n minutos" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "Hace %n hora" msgstr[1] "Hace %n horas" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "hoy" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "ayer" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "Hace %n día" msgstr[1] "Hace %n días" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "el mes pasado" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "Hace %n mes" msgstr[1] "Hace %n meses" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "el año pasado" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "años atrás" @@ -266,23 +266,23 @@ msgstr "Error cargando la plantilla de archivo existente" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Contraseña muy débil." #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Contraseña débil." #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Contraseña de nivel medio. " #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Buena contraseña. " #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Contraseña fuerte." #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 490d277f87d..b2c74fa1e82 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -31,7 +31,7 @@ msgstr "No se pudo mover %s - Un archivo con este nombre ya existe" msgid "Could not move %s" msgstr "No se pudo mover %s " -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "El nombre del archivo no puede quedar vacío." @@ -40,18 +40,18 @@ msgstr "El nombre del archivo no puede quedar vacío." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,134 +177,126 @@ msgstr "La subida del archivo está en proceso. Si salís de la página ahora, l msgid "URL cannot be empty" msgstr "La URL no puede estar vacía" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "En el directorio inicial 'Shared' es un nombre de archivo reservado" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "No se pudo crear el directorio" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Error al obtener la URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Borrar permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Error moviendo el archivo" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendientes" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Error al borrar el archivo." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{carpetas} y {archivos}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" msgstr[1] "Subiendo %n archivos" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "El almacenamiento está lleno, los archivos no se pueden seguir actualizando ni sincronizando" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "El almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "La aplicación de encriptación está habilitada pero las llaves no fueron inicializadas, por favor termine y vuelva a iniciar la sesión" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Llave privada inválida para la aplicación de encriptación. Por favor actualice la clave de la llave privada en las configuraciones personales para recobrar el acceso a sus archivos encriptados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "El proceso de cifrado se ha desactivado, pero los archivos aún están encriptados. Por favor, vaya a la configuración personal para descifrar los archivos." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son muy grandes." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nombre de directorio inválido. 'Shared' está reservado." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "No se pudo renombrar %s" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index ce96c6ce436..27285a233d6 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -5,13 +5,14 @@ # Translators: # cjtess , 2013 # cnngimenez, 2013-2014 +# Javier Victor Mariano Bruno , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 19:50+0000\n" +"Last-Translator: Javier Victor Mariano Bruno \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" @@ -103,7 +104,7 @@ msgstr "Encriptación inicial comenzada... Esto puede durar un tiempo. Por favor #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "Encriptación inicial corriendo... Por favor intente mas tarde. " #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -113,91 +114,91 @@ msgstr "Ve directamente a tu" msgid "personal settings" msgstr "Configuración personal" -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "Encriptación" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Habilitar clave de recuperación (te permite recuperar los archivos de usuario en el caso que pierdas la contraseña):" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "Contraseña de recuperación de clave" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "Repetir la contraseña de la clave de recuperación" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "Habilitado" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "Deshabilitado" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "Cambiar contraseña para recuperar la clave:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "Contraseña antigua de recuperación de clave" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "Nueva contraseña de recuperación de clave" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "Repetir Nueva contraseña para la clave de recuperación" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "Cambiar contraseña" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "Tu contraseña de clave privada ya no coincide con la contraseña de ingreso:" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "Usá tu contraseña de clave privada antigua para tu contraseña de ingreso actual." -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "Si no te acordás de tu contraseña antigua, pedile al administrador que recupere tus archivos" -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "Contraseña anterior" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "Contraseña actual" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "Actualizar contraseña de la clave privada" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "Habilitar recuperación de contraseña:" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Habilitando esta opción, vas a tener acceso a tus archivos encriptados, incluso si perdés la contraseña" -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "Las opciones de recuperación de archivos fueron actualizadas" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "No fue posible actualizar la recuperación de archivos" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 84191efc644..693164f288b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 20:10+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" @@ -40,31 +40,31 @@ msgstr "Error al configurar el almacenamiento de Google Drive" #: js/settings.js:318 js/settings.js:325 msgid "Saved" -msgstr "" +msgstr "Guardado" -#: lib/config.php:592 +#: lib/config.php:598 msgid "Note: " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index c751c3e6cc3..8adff8cc308 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Por favor, comprobá nuevamente la guía de instalación, 2013 # cjtess , 2013 # cnngimenez, 2013-2014 +# Javier Victor Mariano Bruno , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -23,24 +24,24 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "Parámetro suministrado invalido para %s" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "Guardado" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "Configuración de correo de prueba." #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Si recibió este correo, la configuración parece estar correcta." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Un problema ocurrió cuando se intentó enviar el correo electrónico. Por favor revea su configuración." #: admin/controller.php:99 msgid "Email sent" @@ -48,19 +49,19 @@ msgstr "e-mail mandado" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "Necesita especificar el usuario de correo electrónico antes de poder enviar correos electrónicos de prueba." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" -msgstr "" +msgstr "Modo de envio" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Encriptación" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" -msgstr "" +msgstr "Método de autenticación" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -89,7 +90,7 @@ msgstr "No fue posible añadir el grupo" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Archivos des-encriptados correctamente" #: ajax/decryptall.php:33 msgid "" @@ -174,7 +175,7 @@ msgstr "Imposible cambiar la contraseña" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Enviando..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -182,7 +183,7 @@ msgstr "Documentación de Usuario" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "Documentación de Administrador." #: js/apps.js:67 msgid "Update to {appversion}" @@ -234,23 +235,23 @@ msgstr "Seleccionar una imágen de perfil" #: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "Contraseña muy débil." #: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "Contraseña débil." #: js/personal.js:276 msgid "So-so password" -msgstr "" +msgstr "Contraseña de nivel medio. " #: js/personal.js:277 msgid "Good password" -msgstr "" +msgstr "Buena contraseña. " #: js/personal.js:278 msgid "Strong password" -msgstr "" +msgstr "Contraseña fuerte." #: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." @@ -335,19 +336,19 @@ msgstr "Ingresar" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "Plano" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "Administrador NT LAN" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -524,93 +525,113 @@ msgstr "Permitir notificaciones por correo" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "Habilitar a los usuarios para enviar notificaciones por correo para archivos compartidos" + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor conéctese a su %s por medio de HTTPS para habilitar o deshabilitar la característica SSL" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" -msgstr "" +msgstr "Servidor de correo electrónico" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." -msgstr "" +msgstr "Esto es usado para enviar notificaciones." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" -msgstr "" +msgstr "Dirección remitente" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" -msgstr "" +msgstr "Autentificación requerida" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Dirección del servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Puerto" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenciales" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" -msgstr "" +msgstr "Nombre de usuario SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" -msgstr "" +msgstr "Contraseña SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" -msgstr "" +msgstr "Configuracion de correo de prueba." -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" -msgstr "" +msgstr "Enviar correo" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Más" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versión" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " @@ -721,7 +742,7 @@ msgstr "Tu dirección de e-mail" msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "" +msgstr "Rellene una direccion de correo para habilitar la recuperacion de contraseña y recibir notificaciones. " #: templates/personal.php:89 msgid "Profile picture" diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 071e3586950..aac34c46686 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/user_ldap.po @@ -5,13 +5,14 @@ # Translators: # cjtess , 2013 # cnngimenez, 2014 +# Javier Victor Mariano Bruno , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-16 01:55-0400\n" -"PO-Revision-Date: 2014-04-16 05:41+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 20:00+0000\n" +"Last-Translator: Javier Victor Mariano Bruno \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" @@ -88,43 +89,43 @@ msgstr "Éxito" msgid "Error" msgstr "Error" -#: js/settings.js:838 +#: js/settings.js:780 msgid "Configuration OK" msgstr "Configuración válida" -#: js/settings.js:847 +#: js/settings.js:789 msgid "Configuration incorrect" msgstr "Configuración incorrecta" -#: js/settings.js:856 +#: js/settings.js:798 msgid "Configuration incomplete" msgstr "Configuración incompleta" -#: js/settings.js:873 js/settings.js:882 +#: js/settings.js:815 js/settings.js:824 msgid "Select groups" msgstr "Seleccionar grupos" -#: js/settings.js:876 js/settings.js:885 +#: js/settings.js:818 js/settings.js:827 msgid "Select object classes" msgstr "Seleccionar las clases de objetos" -#: js/settings.js:879 +#: js/settings.js:821 msgid "Select attributes" msgstr "Seleccionar atributos" -#: js/settings.js:906 +#: js/settings.js:848 msgid "Connection test succeeded" msgstr "El este de conexión ha sido completado satisfactoriamente" -#: js/settings.js:913 +#: js/settings.js:855 msgid "Connection test failed" msgstr "Falló es test de conexión" -#: js/settings.js:922 +#: js/settings.js:864 msgid "Do you really want to delete the current Server Configuration?" msgstr "¿Realmente desea borrar la configuración actual del servidor?" -#: js/settings.js:923 +#: js/settings.js:865 msgid "Confirm Deletion" msgstr "Confirmar borrado" @@ -146,7 +147,7 @@ msgstr[1] "%s usuarios encontrados" msgid "Invalid Host" msgstr "Host inválido" -#: lib/wizard.php:983 +#: lib/wizard.php:984 msgid "Could not find the desired feature" msgstr "No se pudo encontrar la característica deseada" @@ -165,7 +166,7 @@ msgstr "Ayuda" #: templates/part.wizard-groupfilter.php:4 #, php-format msgid "Groups meeting these criteria are available in %s:" -msgstr "" +msgstr "Los grupos que cumplen con estos criterios están disponibles en %s:" #: templates/part.wizard-groupfilter.php:8 #: templates/part.wizard-userfilter.php:8 @@ -201,7 +202,7 @@ msgstr "grupos encontrados" #: templates/part.wizard-loginfilter.php:4 msgid "Users login with this attribute:" -msgstr "" +msgstr "Los usuarios inician sesión con este atributo:" #: templates/part.wizard-loginfilter.php:8 msgid "LDAP Username:" @@ -269,7 +270,7 @@ msgstr "Podés especificar el DN base para usuarios y grupos en la pestaña \"Av #: templates/part.wizard-userfilter.php:4 #, php-format msgid "Limit %s access to users meeting these criteria:" -msgstr "" +msgstr "Limitar acceso %s a los usuarios que cumplen con este criterio:" #: templates/part.wizard-userfilter.php:31 #, php-format @@ -338,7 +339,7 @@ msgstr "Conectarse únicamente al servidor de réplica." #: templates/settings.php:26 msgid "Case insensitive LDAP server (Windows)" -msgstr "" +msgstr "Servidor de LDAP insensible a mayúsculas/minúsculas (Windows)" #: templates/settings.php:27 msgid "Turn off SSL certificate validation." @@ -413,17 +414,17 @@ msgstr "Asociación Grupo-Miembro" #: templates/settings.php:39 msgid "Nested Groups" -msgstr "" +msgstr "Grupos Anidados" #: templates/settings.php:39 msgid "" "When switched on, groups that contain groups are supported. (Only works if " "the group member attribute contains DNs.)" -msgstr "" +msgstr "Cuando se activa, grupos que contienen grupos son soportados. (Solo funciona si el atributo de miembro del grupo contiene DNs)" #: templates/settings.php:40 msgid "Paging chunksize" -msgstr "" +msgstr "Tamaño del fragmento de paginación" #: templates/settings.php:40 msgid "" diff --git a/l10n/es_CL/files.po b/l10n/es_CL/files.po index 275606fec55..a9a51c85253 100644 --- a/l10n/es_CL/files.po +++ b/l10n/es_CL/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" -msgstr "" +msgstr "Renombrar" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" @@ -356,7 +348,7 @@ msgstr "" #: templates/index.php:12 msgid "New folder" -msgstr "" +msgstr "Nuevo directorio" #: templates/index.php:13 msgid "Folder" diff --git a/l10n/es_CL/files_external.po b/l10n/es_CL/files_external.po index 556ec2e34c7..42e6ef6634f 100644 --- a/l10n/es_CL/files_external.po +++ b/l10n/es_CL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 16:20+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -41,29 +41,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:592 +#: lib/config.php:598 msgid "Note: " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -76,7 +76,7 @@ msgstr "" #: templates/settings.php:8 templates/settings.php:27 msgid "Folder name" -msgstr "" +msgstr "Nombre del directorio" #: templates/settings.php:9 msgid "External storage" diff --git a/l10n/es_CL/lib.po b/l10n/es_CL/lib.po index 26fc694daa5..30f14c86d0f 100644 --- a/l10n/es_CL/lib.po +++ b/l10n/es_CL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: es_CL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_CL/settings.po b/l10n/es_CL/settings.po index 89776c457b6..8ef8dd331c5 100644 --- a/l10n/es_CL/settings.po +++ b/l10n/es_CL/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Chile) (http://www.transifex.com/projects/p/owncloud/language/es_CL/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/es_CR/lib.po b/l10n/es_CR/lib.po index 659f584b656..6560ae17ea9 100644 --- a/l10n/es_CR/lib.po +++ b/l10n/es_CR/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: es_CR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/es_CR/settings.po b/l10n/es_CR/settings.po index a49c9deae0b..fbcec64764f 100644 --- a/l10n/es_CR/settings.po +++ b/l10n/es_CR/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Costa Rica) (http://www.transifex.com/projects/p/owncloud/language/es_CR/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nombre inválido, los caracteres \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos " #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "La subida del archivo está en proceso. Si sale de la página ahora, la msgid "URL cannot be empty" msgstr "La dirección URL no puede estar vacía" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "En la carpeta de inicio, 'Shared' es un nombre reservado" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "No se pudo crear el archivo" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "No se pudo crear la carpeta" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Error al descargar URL." -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Error moviendo archivo" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "No se pudo renombrar el archivo" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Error borrando el archivo." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n carpeta" msgstr[1] "%n carpetas" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n archivo" msgstr[1] "%n archivos" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} y {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Subiendo %n archivo" msgstr[1] "Subiendo %n archivos" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Su almacenamiento está lleno, ¡los archivos no se actualizarán ni sincronizarán más!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su almacenamiento está casi lleno ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "La aplicación de crifrado está habilitada pero tus claves no han sido inicializadas, por favor, cierra la sesión y vuelva a iniciarla de nuevo." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "La clave privada no es válida para la aplicación de cifrado. Por favor, actualiza la contraseña de tu clave privada en tus ajustes personales para recuperar el acceso a tus archivos cifrados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "El cifrado ha sido deshabilitado pero tus archivos permanecen cifrados. Por favor, ve a tus ajustes personales para descifrar tus archivos." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Su descarga está siendo preparada. Esto podría tardar algo de tiempo si los archivos son grandes." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nombre de carpeta inválido. El uso de \"Shared\" esta reservado." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s no pudo ser renombrado" diff --git a/l10n/es_MX/lib.po b/l10n/es_MX/lib.po index db71e813cde..194c2c95a93 100644 --- a/l10n/es_MX/lib.po +++ b/l10n/es_MX/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/owncloud/language/es_MX/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: es_MX\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Por favor, vuelva a comprobar las guías de instalaciónownCloud community, the \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.po b/l10n/et_EE/files.po index 9780dd446f5..e6a6612c79f 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:23+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "Ei saa liigutada faili %s - samanimeline fail on juba olemas" msgid "Could not move %s" msgstr "%s liigutamine ebaõnnestus" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Faili nimi ei saa olla tühi." @@ -38,18 +38,18 @@ msgstr "Faili nimi ei saa olla tühi." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" on vigane failinimi." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Sihtkataloog on ümber tõstetud või kustutatud." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "Faili üleslaadimine on töös. Lehelt lahkumine katkestab selle ülesla msgid "URL cannot be empty" msgstr "URL ei saa olla tühi" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Kodukataloogis 'Shared' on reserveeritud failinimi" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Ei suuda luua faili" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Ei suuda luua kataloogi" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Viga URL-i haaramisel" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Jaga" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Viga faili eemaldamisel" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Viga" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Ei suuda faili ümber nimetada" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Viga faili kustutamisel." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kataloog" msgstr[1] "%n kataloogi" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fail" msgstr[1] "%n faili" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laadin üles %n faili" msgstr[1] "Laadin üles %n faili" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" on vigane failinimi." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Sinu andmemaht on täis! Faile ei uuendata ega sünkroniseerita!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Su andmemaht on peaaegu täis ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Krüpteerimisrakend on lubatud, kuid võtmeid pole lähtestatud. Palun logi välja ning uuesti sisse." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Vigane Krüpteerimisrakendi privaatvõti . Palun uuenda oma privaatse võtme parool oma personaasete seadete all taastamaks ligipääsu oma krüpteeritud failidele." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Krüpteering on keelatud, kuid sinu failid on endiselt krüpteeritud. Palun vaata oma personaalseid seadeid oma failide dekrüpteerimiseks." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu suurte failidega. " -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Suurus" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Muudetud" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Vigane kausta nimi. Nime 'Shared' kasutamine on reserveeritud." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s ümbernimetamine ebaõnnestus" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 6c6de1a4379..ec9288de577 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:43+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:31+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/lib.po b/l10n/et_EE/lib.po index f6146366c68..0bb327fdb7d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,103 +294,108 @@ msgstr "Palun tutvu veelkord paigalduse juhenditega." msgid "%s shared »%s« with you" msgstr "%s jagas sinuga »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Jagamise tüüp %s ei ole õige %s jaoks" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Jagamise tagarakendit %s ei leitud" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Jagamise tagarakendit %s jaoks ei leitud" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna kasutaja %s on algne jagaja" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna jagamise õigused ületavad %s jaoks määratud õigusi" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna edasijagamine pole lubatud" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna jagamise tagarakend ei suutnud leida %s jaoks lähteallikat" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "%s jagamine ebaõnnestus, kuna faili ei suudetud leida failide puhvrist" #: private/tags.php:193 #, php-format diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index 188aaff2c69..8aabd43311c 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:15+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -49,15 +49,15 @@ msgstr "E-kiri on saadetud" msgid "You need to set your user email before being able to send test emails." msgstr "Pead seadistama oma e-postienne kui on võimalik saata test-kirju." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Saatmise viis" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Krüpteerimine" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Autentimise meetod" @@ -525,91 +525,111 @@ msgstr "Luba teavitused e-postiga" msgid "Allow users to send mail notification for shared files" msgstr "Luba kasutajatel saata e-posti teavitusi jagatud failide kohta" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Sunnib kliente %s ühenduma krüpteeritult." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Palun ühendu oma %s üle HTTPS või keela SSL kasutamine." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Postiserver" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Seda kasutatakse teadete välja saatmiseks." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Saatja aadress" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Autentimine on vajalik" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Serveri aadress" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Kasutajatunnused" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP kasutajatunnus" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP parool" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Testi e-posti seadeid" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Saada kiri" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Logi" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Rohkem" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Vähem" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versioon" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \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/files.po b/l10n/eu/files.po index 281fc74b73d..6b0805ff7bb 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/files.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da" msgid "Could not move %s" msgstr "Ezin dira fitxategiak mugitu %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Fitxategi izena ezin da hutsa izan." @@ -38,18 +38,18 @@ msgstr "Fitxategi izena ezin da hutsa izan." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "Fitxategien igoera martxan da. Orria orain uzteak igoera ezeztatutko du. msgid "URL cannot be empty" msgstr "URLa ezin da hutsik egon" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Etxeko (home) karpetan 'Shared' erreserbatutako fitxategi izena da" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Ezin izan da fitxategia sortu" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Ezin izan da karpeta sortu" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Errorea URLa eskuratzerakoan" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Elkarbanatu" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Errorea fitxategia mugitzean" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Errorea" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Zain" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Ezin izan da fitxategia berrizendatu" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Errorea fitxategia ezabatzerakoan." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "karpeta %n" msgstr[1] "%n karpeta" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "fitxategi %n" msgstr[1] "%n fitxategi" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} eta {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Fitxategi %n igotzen" msgstr[1] "%n fitxategi igotzen" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Zure biltegiratzea beterik dago, ezingo duzu aurrerantzean fitxategirik igo edo sinkronizatu!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Enkriptazio aplikazioa gaituta dago baina zure gakoak ez daude konfiguratuta, mesedez saioa bukatu eta berriro hasi" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Enkriptazio aplikaziorako gako pribatu okerra. Mesedez eguneratu zure gako pribatuaren pasahitza zure ezarpen pertsonaletan zure enkriptatuko fitxategietarako sarrera berreskuratzeko." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Enkriptazioa desgaitua izan da baina zure fitxategiak oraindik enkriptatuta daude. Mesedez jo zure ezarpen pertsonaletara zure fitxategiak dekodifikatzeko." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Izena" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamaina" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Aldatuta" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Baliogabeako karpeta izena. 'Shared' izena erreserbatuta dago." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s ezin da berrizendatu" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index e2eee4be457..2fb9d10a837 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Mesedez begiratu instalazio gidak." msgid "%s shared »%s« with you" msgstr "%s-ek »%s« zurekin partekatu du" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 68512ff41a1..4ca4b2366de 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "Eposta bidalia" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Enkriptazioa" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -526,91 +526,111 @@ msgstr "Baimendu posta bidezko jakinarazpenak" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Zerbitzariaren helbidea" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Portua" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Kredentzialak" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Gehiago" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/eu_ES/lib.po b/l10n/eu_ES/lib.po index 2fbdf0eae66..75ca48cd20a 100644 --- a/l10n/eu_ES/lib.po +++ b/l10n/eu_ES/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: eu_ES\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/eu_ES/settings.po b/l10n/eu_ES/settings.po index 95737685dab..fc10a358ad1 100644 --- a/l10n/eu_ES/settings.po +++ b/l10n/eu_ES/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Basque (Spain) (http://www.transifex.com/projects/p/owncloud/language/eu_ES/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,131 +175,123 @@ msgstr "آپلودکردن پرونده در حال پیشرفت است. در ص msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "اشتراک‌گذاری" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "حذف قطعی" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "خطا" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "در حال بارگذاری %n فایل" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "فضای ذخیره ی شما کاملا پر است، بیش از این فایلها بهنگام یا همگام سازی نمی توانند بشوند!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "نام" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "اندازه" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "تاریخ" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s نمیتواند تغییر نام دهد." diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 8a60e81be0a..bb866264d52 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "لطفاً دوباره راهنمای نصبرا بر msgid "%s shared »%s« with you" msgstr "%s به اشتراک گذاشته شده است »%s« توسط شما" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 52107ad5133..0985d0aa7c7 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "ایمیل ارسال شد" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "رمزگذاری" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -526,91 +526,111 @@ msgstr "مجاز نمودن اطلاع رسانی توسط ایمیل" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "امنیت" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "کلاینت‌ها را مجبور کن که از یک ارتباط رمزنگاری شده برای اتصال به %s استفاده کنند." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "برای فعال سازی یا عدم فعال سازی اجبار استفاده از SSL، لطفاً از طریق HTTPS به %s وصل شوید." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "آدرس سرور" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "درگاه" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "اعتبارهای" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "سطح ورود" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "بیش‌تر" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "نسخه" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the , 2013-2014 # nahka , 2014 +# ottok , 2014 # ioxo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 08:11+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +31,7 @@ msgstr "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemas msgid "Could not move %s" msgstr "Kohteen %s siirto ei onnistunut" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Tiedoston nimi ei voi olla tyhjä." @@ -39,18 +40,18 @@ msgstr "Tiedoston nimi ei voi olla tyhjä." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" on virheellinen tiedostonimi." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Kohdekansio on siirretty tai poistettu." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -176,134 +177,126 @@ msgstr "Tiedoston lähetys on meneillään. Sivulta poistuminen nyt peruu tiedos msgid "URL cannot be empty" msgstr "Osoite ei voi olla tyhjä" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Tiedoston luominen epäonnistui" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Kansion luominen epäonnistui" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Virhe noutaessa verkko-osoitetta" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Jaa" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Virhe tiedostoa siirrettäessä" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Virhe" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Tiedoston nimeäminen uudelleen epäonnistui" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Virhe tiedostoa poistaessa." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n kansio" msgstr[1] "%n kansiota" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tiedosto" msgstr[1] "%n tiedostoa" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} ja {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lähetetään %n tiedosto" msgstr[1] "Lähetetään %n tiedostoa" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" on virheellinen tiedostonimi." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Tallennustila on loppu, tiedostoja ei voi enää päivittää tai synkronoida!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Tallennustila on melkein loppu ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" -msgstr "" +msgstr "Salaussovellus on käytössä, mutta salausavaimia ei ole alustettu. Ole hyvä ja kirjaudu sisään uudelleen." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Salaussovelluksen salausavain on virheellinen. Ole hyvä ja päivitä salausavain henkilökohtaisissa asetuksissasi jotta voit taas avata salatuskirjoitetut tiedostosi." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Salaus poistettiin käytöstä, mutta tiedostosi ovat edelleen salattuina. Siirry henkilökohtaisiin asetuksiin avataksesi tiedostojesi salauksen." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Koko" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Muokattu" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Virheellinen kansion nimi. 'Shared':n käyttö on varattu." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "kohteen %s nimeäminen uudelleen epäonnistui" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 5f02f3c05ff..4472709ca4d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -133,7 +141,7 @@ msgstr "" msgid "" "App can't be installed because the version in info.xml/version is not the " "same as the version reported from the app store" -msgstr "" +msgstr "Sovellusta ei voi asentaa, koska info.xml/version ilmoittaa versioksi eri arvon kuin sovelluskauppa" #: private/installer.php:170 msgid "App directory already exists" @@ -223,7 +231,7 @@ msgstr "Tietokantavirhe: \"%s\"" #: private/setup/postgresql.php:140 private/setup/postgresql.php:149 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Loukkaava komento oli: \"%s\"" #: private/setup/mysql.php:85 #, php-format @@ -254,7 +262,7 @@ msgstr "Oraclen käyttäjätunnus ja/tai salasana on väärin" #: private/setup/oci.php:170 private/setup/oci.php:202 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Loukkaava komento oli: \"%s\", nimi: %s, salasana: %s" #: private/setup/postgresql.php:30 private/setup/postgresql.php:83 msgid "PostgreSQL username and/or password not valid" @@ -272,7 +280,7 @@ msgstr "Aseta ylläpitäjän salasana." msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Web-palvelimen asetukset eivät ole kelvolliset tiedostojen synkronointia varten, koska WebDAV-liitäntä vaikuttaa olevan rikki." #: private/setup.php:203 #, php-format @@ -285,103 +293,108 @@ msgstr "Lue tarkasti asennusohjeet." msgid "%s shared »%s« with you" msgstr "%s jakoi kohteen »%s« kanssasi" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on kohteen omistaja" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjää %s ei ole olemassa" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska kohde on jo jaettu käyttäjän %s kanssa" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska ryhmää %s ei ole olemassa" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s ei ole ryhmän %s jäsen" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska jakaminen linkkejä käyttäen ei ole sallittu" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Kohteen %s oikeuksien asettaminen epäonnistui, koska kohdetta ei löytynyt" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on alkuperäinen jakaja" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska jakaminen uudelleen ei ole sallittu" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Kohteen %s jakaminen epäonnistui, koska tiedostoa ei löytynyt tiedostovälimuistista" #: private/tags.php:193 #, php-format diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index ad7595a433a..8d077ff0d70 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 08:11+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,15 +48,15 @@ msgstr "Sähköposti lähetetty" msgid "You need to set your user email before being able to send test emails." msgstr "Aseta sähköpostiosoite, jotta voit testata sähköpostin toimivuutta." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Lähetystila" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Salaus" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Tunnistautumistapa" @@ -375,7 +375,7 @@ msgstr "Asetusvaroitus" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Web-palvelimen asetukset eivät ole kelvolliset tiedostojen synkronointia varten, koska WebDAV-liitäntä vaikuttaa olevan rikki." #: templates/admin.php:79 #, php-format @@ -524,91 +524,111 @@ msgstr "Salli sähköposti-ilmoitukset" msgid "Allow users to send mail notification for shared files" msgstr "Salli käyttäjien lähettää sähköposti-ilmoituksia jaetuista tiedostoista" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Pakottaa asiakasohjelmistot ottamaan yhteyden %siin salatun yhteyden kautta." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Sähköpostipalvelin" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Tätä käytetään ilmoitusten lähettämiseen." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Lähettäjän osoite" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Tunnistautuminen vaaditaan" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Palvelimen osoite" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Portti" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Tilitiedot" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP-käyttäjätunnus" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP-salasana" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Testaa sähköpostiasetukset" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Lähetä sähköpostiviesti" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Loki" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Enemmän" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versio" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -32,7 +32,7 @@ msgstr "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà" msgid "Could not move %s" msgstr "Impossible de déplacer %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Le nom de fichier ne peut être vide." @@ -41,18 +41,18 @@ msgstr "Le nom de fichier ne peut être vide." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" n'est pas un nom de fichier valide." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Le dossier cible a été déplacé ou supprimé." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -178,134 +178,126 @@ msgstr "L'envoi du fichier est en cours. Quitter cette page maintenant annulera msgid "URL cannot be empty" msgstr "L'URL ne peut pas être vide" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Dans le dossier home, 'Partagé' est un nom de fichier réservé" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Impossible de créer le fichier" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Impossible de créer le dossier" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Erreur d'accès à l'URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Partager" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renommer" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Erreur lors du déplacement du fichier" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Erreur" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "En attente" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Impossible de renommer le fichier" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Erreur pendant la suppression du fichier." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dossier" msgstr[1] "%n dossiers" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fichier" msgstr[1] "%n fichiers" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} et {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Téléversement de %n fichier" msgstr[1] "Téléversement de %n fichiers" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" n'est pas un nom de fichier valide." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Votre espage de stockage est plein, les fichiers ne peuvent plus être téléversés ou synchronisés !" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Votre espace de stockage est presque plein ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "L'application de chiffrement est activée mais vos clés ne sont pas initialisées, veuillez vous déconnecter et ensuite vous reconnecter." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Votre clef privée pour l'application de chiffrement est invalide ! Veuillez 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 chiffrés." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Le chiffrement était désactivé mais vos fichiers sont toujours chiffrés. Veuillez vous rendre sur vos Paramètres personnels pour déchiffrer vos fichiers." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Taille" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modifié" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s ne peut être renommé" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index 1ad2227f67b..6831f9d7f7a 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -6,13 +6,14 @@ # Christophe Lherieau , 2013-2014 # Cyril Glapa , 2013 # etiess , 2013 +# ptit_boogy , 2014 # ogre_sympathique , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,6 +22,14 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,103 +297,108 @@ msgstr "Veuillez vous référer au guide d'installation." msgid "%s shared »%s« with you" msgstr "%s partagé »%s« avec vous" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Le partage de %s a échoué car l'utilisateur %s est le propriétaire de l'objet" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Le partage de %s a échoué car l'utilisateur %s n'existe pas" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Le partage de %s a échoué car l'utilisateur %s n'est membre d'aucun groupe auquel %s appartient" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Le partage de %s a échoué car cet objet est déjà partagé avec %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Le partage de %s a échoué car le groupe %s n'existe pas" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Le partage de %s a échoué car %s n'est pas membre du groupe %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Le partage de %s a échoué car un partage de lien n'est pas permis" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Le type de partage %s n'est pas valide pour %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Le réglage des permissions pour %s a échoué car les permissions dépassent celle accordée à %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Le réglage des permissions pour %s a échoué car l'objet n'a pas été trouvé" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Le partage de %s a échoué car l'utilisateur %s est déjà l'utilisateur à l'origine du partage." -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Le partage de %s a échoué car les permissions dépassent les permissions accordées à %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Le partage de %s a échoué car le repartage n'est pas autorisé" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Le partage de %s a échoué car le fichier n'a pas été trouvé dans les fichiers mis en cache." #: private/tags.php:193 #, php-format diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 42cc8cb0a48..c13fa5fe4b8 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 08:11+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -58,15 +58,15 @@ msgstr "Email envoyé" msgid "You need to set your user email before being able to send test emails." msgstr "Vous devez configurer votre e-mail d'utilisateur avant de pouvoir envoyer des e-mails de test." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Mode d'envoi" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Chiffrement" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Méthode d'authentification" @@ -534,91 +534,111 @@ msgstr "Autoriser les notifications par couriel" msgid "Allow users to send mail notification for shared files" msgstr "Autoriser les utilisateurs à envoyer une notification par courriel concernant les fichiers partagés" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forcer les clients à se connecter à %s via une connexion chiffrée." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Veuillez vous connecter à cette instance %s via HTTPS pour activer ou désactiver SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Serveur mail" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Ceci est utilisé pour l'envoi des notifications." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Adresse source" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Authentification requise" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresse du serveur" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Informations d'identification" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nom d'utilisateur SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Mot de passe SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Paramètres de test d'e-mail" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Envoyer un e-mail" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Plus" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Moins" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/fr_CA/lib.po b/l10n/fr_CA/lib.po index 09727cd39d6..65455a870c4 100644 --- a/l10n/fr_CA/lib.po +++ b/l10n/fr_CA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: fr_CA\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/fr_CA/settings.po b/l10n/fr_CA/settings.po index f1172880703..19a3565236d 100644 --- a/l10n/fr_CA/settings.po +++ b/l10n/fr_CA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: French (Canada) (http://www.transifex.com/projects/p/owncloud/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "Non foi posíbel mover %s; Xa existe un ficheiro con ese nome." msgid "Could not move %s" msgstr "Non foi posíbel mover %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "O nome de ficheiro non pode estar baleiro" @@ -38,18 +38,18 @@ msgstr "O nome de ficheiro non pode estar baleiro" msgid "\"%s\" is an invalid file name." msgstr "«%s» é un nome incorrecto de ficheiro." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*»." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "O cartafol de destino foi movido ou eliminado." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará msgid "URL cannot be empty" msgstr "O URL non pode quedar en branco." -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "«Shared» dentro do cartafol persoal é un nome reservado" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Non foi posíbel crear o ficheiro" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Non foi posíbel crear o cartafol" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Produciuse un erro ao obter o URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Produciuse un erro ao mover o ficheiro" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Non foi posíbel renomear o ficheiro" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Produciuse un erro ao eliminar o ficheiro." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartafol" msgstr[1] "%n cartafoles" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Cargando %n ficheiro" msgstr[1] "Cargando %n ficheiros" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "«{name}» é un nome incorrecto de ficheiro." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "O seu espazo de almacenamento está cheo, non é posíbel actualizar ou sincronizar máis os ficheiros!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "O aplicativo de cifrado está activado, mais as chaves non foron inicializadas, saia da sesión e volva a acceder de novo" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "A chave privada para o aplicativo de cifrado non é correcta. Actualice o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros cifrados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "O cifrado foi desactivado, mais os ficheiros están cifrados. Vaia á configuración persoal para descifrar os ficheiros." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamaño" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nome de cartafol non válido. O uso de «Shared» está reservado." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s non pode cambiar de nome" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 02a26c87e1b..f5b7f938132 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,103 +294,108 @@ msgstr "Volva comprobar as guías de instalación" msgid "%s shared »%s« with you" msgstr "%s compartiu «%s» con vostede" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Fallou a compartición de %s, xa que o propietario do elemento é o usuario %s" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Fallou a compartición de %s, xa que o usuario %s non existe" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Fallou a compartición de %s, xa que o usuario %s non é membro de ningún grupo que sexa membro de %s" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Fallou a compartición de %s, xa que este elemento xa está compartido con %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Fallou a compartición de %s, xa que o grupo %s non existe" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Fallou a compartición de %s, xa que %s non é membro do grupo %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Fallou a compartición de %s, xa que non está permitido compartir con ligazóns" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Non se admite a compartición do tipo %s para %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Non é posíbel estabelecer permisos para %s, xa que os permisos superan os permisos concedidos a %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Non é posíbel estabelecer permisos para %s, xa que non se atopa o elemento" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "A infraestrutura de compartición %s ten que implementar a interface OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Non se atopou a infraestrutura de compartición %s" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Non se atopou a infraestrutura de compartición para %s" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Fallou a compartición de %s, xa que a compartición orixinal é do usuario %s" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Fallou a compartición de %s, xa que os permisos superan os permisos concedidos a %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Fallou a compartición de %s, xa que non está permitido repetir a compartción" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Fallou a compartición de %s, xa que a infraestrutura de compartición para %s non foi quen de atopar a orixe" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Fallou a compartición de %s, xa que non foi posíbel atopar o ficheiro na caché de ficheiros" #: private/tags.php:193 #, php-format diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index 4e595e7c9b4..cbf58427c9a 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 10:24+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -49,15 +49,15 @@ msgstr "Correo enviado" msgid "You need to set your user email before being able to send test emails." msgstr "É necesario configurar o correo do usuario antes de poder enviar mensaxes de correo de proba." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Modo de envío" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Cifrado" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Método de autenticación" @@ -525,91 +525,111 @@ msgstr "Permitir o envío de notificacións por correo" msgid "Allow users to send mail notification for shared files" msgstr "Permitirlle aos usuarios enviar notificacións por correo para os ficheiros compartidos" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forzar que os clientes se conecten a %s empregando unha conexión cifrada." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Conéctese a %s empregando HTTPS para activar ou desactivar o forzado de SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Servidor de correo" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Isto utilizase para o envío de notificacións." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Desde o enderezo" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Requírese autenticación" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Enderezo do servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Porto" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nome de usuario SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Contrasinal SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Correo de proba dos axustes" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Enviar o correo" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Máis" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versión" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד ת msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "שתף" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "שגיאה" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "שטח האחסון שלך כמעט מלא ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "שם" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "גודל" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "זמן שינוי" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 6a707e23ddc..e7a0612123b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "נא לעיין שוב במדריכי ההתקנה." msgid "%s shared »%s« with you" msgstr "%s שיתף/שיתפה איתך את »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index a28368def9c..9111523a3bc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "הודעת הדוא״ל נשלחה" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "הצפנה" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "כתובת שרת" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "פורט" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "פרטי גישה" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "יומן" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "יותר" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "פחות" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "גרסא" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "साझा करें" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "त्रुटि" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index dac38b91b20..3e99b87307f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 359c0fbdfd4..cb8cd6f4aa6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "ईमेल भेज दिया गया है " msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,137 +173,129 @@ msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Podijeli" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Greška" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Veličina" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Zadnja promjena" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index c89d48b91fa..586424f6c79 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 7701040cd59..106cdb33593 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "više" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a fel msgid "URL cannot be empty" msgstr "Az URL-cím nem maradhat kitöltetlenül" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "A kiindulási mappában a 'Shared' egy belső használatra fenntartott név" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Az állomány nem hozható létre" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "A mappa nem hozható létre" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "A megadott URL-ről nem sikerül adatokat kapni" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Megosztás" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Az állomány áthelyezése nem sikerült." -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Hiba" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Az állomány nem nevezhető át" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Hiba a file törlése közben." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappa" msgstr[1] "%n mappa" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n állomány" msgstr[1] "%n állomány" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} és {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n állomány feltöltése" msgstr[1] "%n állomány feltöltése" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "A tároló tele van, a fájlok nem frissíthetőek vagy szinkronizálhatóak a jövőben." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "A tároló majdnem tele van ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Az állományok titkosítása engedélyezve van, de az Ön titkos kulcsai nincsenek beállítva. Ezért kérjük, hogy jelentkezzen ki, és lépjen be újra!" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Az állományok titkosításához használt titkos kulcsa érvénytelen. Kérjük frissítse a titkos kulcs jelszót a személyes beállításokban, hogy ismét hozzáférjen a titkosított állományaihoz!" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "A titkosítási funkciót kikapcsolták, de az Ön állományai még mindig titkosított állapotban vannak. A személyes beállításoknál tudja a titkosítást feloldani." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Név" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Méret" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Módosítva" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Érvénytelen mappanév. A 'Shared' a rendszer számára fenntartott elnevezés." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s átnevezése nem sikerült" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 2b52cf384d2..ef59513e38e 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# sherlock79 , 2013 +# sherlock79 , 2013 # ebela , 2013 # Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -20,6 +20,14 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -287,99 +295,104 @@ msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmu msgid "%s shared »%s« with you" msgstr "%s megosztotta Önnel ezt: »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 8fadff9a291..9824dfce4ac 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -4,15 +4,15 @@ # # Translators: # Adam Toth , 2013 -# sherlock79 , 2013 +# sherlock79 , 2013 # ebela , 2013 # Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -51,15 +51,15 @@ msgstr "Az emailt elküldtük" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Titkosítás" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -527,91 +527,111 @@ msgstr "E-mail értesítések engedélyezése" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Kérjük kapcsolodjon a %s rendszerhez HTTPS protokollon keresztül, hogy be vagy ki kapcsoljaa kötelező SSL beállítást." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "A kiszolgáló címe" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Azonosítók" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Több" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Verzió" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index 3b3b5ffa6be..fdd86ad09c7 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index ff928e69b36..f48d5efc3c6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the , 2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 15:10+0000\n" +"Last-Translator: giogio \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: ajax/share.php:87 msgid "Expiration date is in the past." -msgstr "" +msgstr "Data de expiration es in le passato." #: ajax/share.php:119 ajax/share.php:161 #, php-format @@ -28,27 +29,27 @@ msgstr "" #: ajax/update.php:10 msgid "Turned on maintenance mode" -msgstr "" +msgstr "Activate modo de mantenentia" #: ajax/update.php:13 msgid "Turned off maintenance mode" -msgstr "" +msgstr "De-activar modo de mantenentia" #: ajax/update.php:16 msgid "Updated database" -msgstr "" +msgstr "Base de datos actualisate" #: avatar/controller.php:62 msgid "No image or file provided" -msgstr "" +msgstr "Il forniva necun imagine o file" #: avatar/controller.php:81 msgid "Unknown filetype" -msgstr "" +msgstr "Typo de file incognite" #: avatar/controller.php:85 msgid "Invalid image" -msgstr "" +msgstr "Imagine invalide" #: avatar/controller.php:115 avatar/controller.php:142 msgid "No temporary profile picture available, try again" @@ -134,65 +135,65 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Configurationes" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." -msgstr "" +msgstr "Salveguardante..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" -msgstr "" +msgstr "secundas passate" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n minuta passate" +msgstr[1] "%n minutas passate" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n hora passate" +msgstr[1] "%n horas passate" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" -msgstr "" +msgstr "hodie" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" -msgstr "" +msgstr "heri" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" -msgstr "" +msgstr "ultime mense" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "" msgstr[1] "" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" -msgstr "" +msgstr "ultime anno" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" -msgstr "" +msgstr "annos passate" #: js/oc-dialogs.js:125 msgid "Choose" -msgstr "" +msgstr "Seliger" #: js/oc-dialogs.js:151 msgid "Error loading file picker template: {error}" @@ -200,15 +201,15 @@ msgstr "" #: js/oc-dialogs.js:177 msgid "Yes" -msgstr "" +msgstr "Si" #: js/oc-dialogs.js:187 msgid "No" -msgstr "" +msgstr "No" #: js/oc-dialogs.js:204 msgid "Ok" -msgstr "" +msgstr "Ok" #: js/oc-dialogs.js:224 msgid "Error loading message template: {error}" @@ -217,24 +218,24 @@ msgstr "" #: js/oc-dialogs.js:352 msgid "{count} file conflict" msgid_plural "{count} file conflicts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "{count} conflicto de file" +msgstr[1] "{count} conflictos de file" #: js/oc-dialogs.js:366 msgid "One file conflict" -msgstr "" +msgstr "Un conflicto de file" #: js/oc-dialogs.js:372 msgid "New Files" -msgstr "" +msgstr "Nove files" #: js/oc-dialogs.js:373 msgid "Already existing files" -msgstr "" +msgstr "Files jam existente" #: js/oc-dialogs.js:375 msgid "Which files do you want to keep?" -msgstr "" +msgstr "Qual files tu vole mantener?" #: js/oc-dialogs.js:376 msgid "" @@ -248,7 +249,7 @@ msgstr "Cancellar" #: js/oc-dialogs.js:394 msgid "Continue" -msgstr "" +msgstr "Continuar" #: js/oc-dialogs.js:441 js/oc-dialogs.js:454 msgid "(all selected)" @@ -260,31 +261,31 @@ msgstr "" #: js/oc-dialogs.js:466 msgid "Error loading file exists template" -msgstr "" +msgstr "Error quando on incargava patrono de file existente" #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Contrasigno multo debile" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Contrasigno debile" #: js/setup.js:86 msgid "So-so password" -msgstr "" +msgstr "Contrasigno passabile" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Contrasigno bon" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Contrasigno forte" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" -msgstr "" +msgstr "Compartite" #: js/share.js:109 msgid "Share" @@ -297,35 +298,35 @@ msgstr "Error" #: js/share.js:160 js/share.js:790 msgid "Error while sharing" -msgstr "" +msgstr "Error quando on compartiva" #: js/share.js:171 msgid "Error while unsharing" -msgstr "" +msgstr "Error quando on levava le compartir" #: js/share.js:178 msgid "Error while changing permissions" -msgstr "" +msgstr "Error quando on modificava permissiones" #: js/share.js:188 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Compartite con te e le gruppo {group} per {owner}" #: js/share.js:190 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Compartite con te per {owner} " #: js/share.js:214 msgid "Share with user or group …" -msgstr "" +msgstr "Compartir con usator o gruppo ..." #: js/share.js:220 msgid "Share link" -msgstr "" +msgstr "Compartir ligamine" #: js/share.js:223 msgid "Password protect" -msgstr "" +msgstr "Protegite per contrasigno" #: js/share.js:225 templates/installation.php:60 templates/login.php:40 msgid "Password" @@ -333,11 +334,11 @@ msgstr "Contrasigno" #: js/share.js:230 msgid "Allow Public Upload" -msgstr "" +msgstr "Permitter incargamento public" #: js/share.js:234 msgid "Email link to person" -msgstr "" +msgstr "Ligamine de e-posta a persona" #: js/share.js:235 msgid "Send" @@ -345,19 +346,19 @@ msgstr "Invia" #: js/share.js:240 msgid "Set expiration date" -msgstr "" +msgstr "Fixa data de expiration" #: js/share.js:241 msgid "Expiration date" -msgstr "" +msgstr "Data de expiration" #: js/share.js:277 msgid "Share via email:" -msgstr "" +msgstr "Compartir via e-posta:" #: js/share.js:280 msgid "No people found" -msgstr "" +msgstr "Il trovava nulle persona" #: js/share.js:324 js/share.js:385 msgid "group" @@ -365,11 +366,11 @@ msgstr "gruppo" #: js/share.js:357 msgid "Resharing is not allowed" -msgstr "" +msgstr "Il non es permittite compartir plus que un vice" #: js/share.js:401 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Compartite in {item} con {user}" #: js/share.js:423 msgid "Unshare" @@ -377,7 +378,7 @@ msgstr "Leva compartir" #: js/share.js:431 msgid "notify by email" -msgstr "" +msgstr "notificar per message de e-posta" #: js/share.js:434 msgid "can edit" @@ -385,55 +386,55 @@ msgstr "pote modificar" #: js/share.js:436 msgid "access control" -msgstr "" +msgstr "controlo de accesso" #: js/share.js:439 msgid "create" -msgstr "" +msgstr "crear" #: js/share.js:442 msgid "update" -msgstr "" +msgstr "actualisar" #: js/share.js:445 msgid "delete" -msgstr "" +msgstr "deler" #: js/share.js:448 msgid "share" -msgstr "" +msgstr "compartir" #: js/share.js:721 msgid "Password protected" -msgstr "" +msgstr "Proteger con contrasigno" #: js/share.js:734 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Error quando on levava le data de expiration" #: js/share.js:752 msgid "Error setting expiration date" -msgstr "" +msgstr "Error quando on fixava le data de expiration" #: js/share.js:777 msgid "Sending ..." -msgstr "" +msgstr "Inviante ..." #: js/share.js:788 msgid "Email sent" -msgstr "" +msgstr "Message de e-posta inviate" #: js/share.js:812 msgid "Warning" -msgstr "" +msgstr "Aviso" #: js/tags.js:4 msgid "The object type is not specified." -msgstr "" +msgstr "Le typo de objecto non es specificate" #: js/tags.js:13 msgid "Enter new" -msgstr "" +msgstr "Inserta nove" #: js/tags.js:27 msgid "Delete" @@ -445,7 +446,7 @@ msgstr "Adder" #: js/tags.js:39 msgid "Edit tags" -msgstr "" +msgstr "Modifica etiquettas" #: js/tags.js:57 msgid "Error loading dialog template: {error}" @@ -457,33 +458,33 @@ msgstr "" #: js/update.js:8 msgid "Please reload the page." -msgstr "" +msgstr "Pro favor recarga le pagina." #: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Le actualisation terminava sin successo. Pro favor tu reporta iste problema al ownCloud community." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Le actualisation terminava con successo. On redirige nunc a tu ownCloud." #: lostpassword/controller.php:70 #, php-format msgid "%s password reset" -msgstr "" +msgstr "%s contrasigno re-fixate" #: lostpassword/controller.php:72 msgid "" "A problem has occurred whilst sending the email, please contact your " "administrator." -msgstr "" +msgstr "Un problema ha occurrite quando on inviava le message de e-posta, pro favor continge tu administrator." #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "Usa le ligamine sequente pro re-fixar tu contrasigno: {link}" #: lostpassword/templates/lostpassword.php:7 msgid "" @@ -519,7 +520,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:30 msgid "Reset" -msgstr "" +msgstr "Re-fixar" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" @@ -547,7 +548,7 @@ msgstr "" #: setup/controller.php:144 msgid "" "For the best results, please consider using a GNU/Linux server instead." -msgstr "" +msgstr "Pro le exitos melior, pro favor tu considera usar in loco un servitor GNU/Linux." #: strings.php:5 msgid "Personal" @@ -571,11 +572,11 @@ msgstr "Adjuta" #: tags/controller.php:22 msgid "Error loading tags" -msgstr "" +msgstr "Error quando on cargava etiquettas" #: tags/controller.php:48 msgid "Tag already exists" -msgstr "" +msgstr "Etiquetta ja existe" #: tags/controller.php:64 msgid "Error deleting tag(s)" @@ -618,16 +619,16 @@ msgstr "" #: templates/altmail.php:4 templates/mail.php:17 #, php-format msgid "The share will expire on %s." -msgstr "" +msgstr "Le compartir expirara le %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "" +msgstr "Acclamationes!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 msgid "Security Warning" -msgstr "" +msgstr "Aviso de securitate" #: templates/installation.php:26 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" @@ -636,7 +637,7 @@ msgstr "" #: templates/installation.php:27 #, php-format msgid "Please update your PHP installation to use %s securely." -msgstr "" +msgstr "Pro favor actualisa tu installation de PHP pro usar %s con securitate." #: templates/installation.php:33 msgid "" @@ -669,7 +670,7 @@ msgstr "Crear un conto de administration" #: templates/installation.php:70 msgid "Storage & database" -msgstr "" +msgstr "Immagazinage & base de datos" #: templates/installation.php:77 msgid "Data folder" @@ -697,7 +698,7 @@ msgstr "Nomine de base de datos" #: templates/installation.php:132 msgid "Database tablespace" -msgstr "" +msgstr "Spatio de tabella de base de datos" #: templates/installation.php:140 msgid "Database host" @@ -705,11 +706,11 @@ msgstr "Hospite de base de datos" #: templates/installation.php:150 msgid "Finish setup" -msgstr "" +msgstr "Terminar configuration" #: templates/installation.php:150 msgid "Finishing …" -msgstr "" +msgstr "Terminante ..." #: templates/layout.user.php:40 msgid "" @@ -729,7 +730,7 @@ msgstr "Clauder le session" #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Accesso de autorisation refusate!" #: templates/login.php:10 msgid "" @@ -739,15 +740,15 @@ msgstr "" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Pro favor modifica tu contrasigno pro asssecurar de nove tu conto" #: templates/login.php:17 msgid "Server side authentication failed!" -msgstr "" +msgstr "Il falleva authentication de latere servitor!" #: templates/login.php:18 msgid "Please contact your administrator." -msgstr "" +msgstr "Pro favor continge tu administrator." #: templates/login.php:46 msgid "Lost your password?" @@ -763,7 +764,7 @@ msgstr "Aperir session" #: templates/login.php:60 msgid "Alternative Logins" -msgstr "" +msgstr "Accessos de autorisation alternative" #: templates/mail.php:15 #, php-format @@ -788,7 +789,7 @@ msgstr "" #: templates/singleuser.user.php:7 templates/update.user.php:6 msgid "Thank you for your patience." -msgstr "" +msgstr "Gratias pro tu patientia." #: templates/update.admin.php:3 #, php-format diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 8d845151f71..96ac1fa27cc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -27,7 +27,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -36,18 +36,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartir" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nomine" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Dimension" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificate" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" @@ -356,7 +348,7 @@ msgstr "File de texto" #: templates/index.php:12 msgid "New folder" -msgstr "" +msgstr "Nove dossier" #: templates/index.php:13 msgid "Folder" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index 6397e610907..c94d75f85c8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 15: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" @@ -41,29 +41,29 @@ msgstr "" msgid "Saved" msgstr "" -#: lib/config.php:592 +#: lib/config.php:598 msgid "Note: " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" @@ -76,7 +76,7 @@ msgstr "" #: templates/settings.php:8 templates/settings.php:27 msgid "Folder name" -msgstr "" +msgstr "Nomine de dossier" #: templates/settings.php:9 msgid "External storage" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index d0be345d97a..331c7c30f49 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -55,11 +63,11 @@ msgstr "" #: private/avatar.php:66 msgid "Unknown filetype" -msgstr "" +msgstr "Typo de file incognite" #: private/avatar.php:71 msgid "Invalid image" -msgstr "" +msgstr "Imagine invalide" #: private/defaults.php:35 msgid "web services under your control" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" @@ -389,27 +402,27 @@ msgstr "" #: private/template/functions.php:134 msgid "seconds ago" -msgstr "" +msgstr "secundas passate" #: private/template/functions.php:135 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n minutas passate" #: private/template/functions.php:136 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "" -msgstr[1] "" +msgstr[1] "%n horas passate" #: private/template/functions.php:137 msgid "today" -msgstr "" +msgstr "hodie" #: private/template/functions.php:138 msgid "yesterday" -msgstr "" +msgstr "heri" #: private/template/functions.php:140 msgid "%n day go" @@ -419,7 +432,7 @@ msgstr[1] "" #: private/template/functions.php:142 msgid "last month" -msgstr "" +msgstr "ultime mense" #: private/template/functions.php:143 msgid "%n month ago" @@ -429,11 +442,11 @@ msgstr[1] "" #: private/template/functions.php:145 msgid "last year" -msgstr "" +msgstr "ultime anno" #: private/template/functions.php:146 msgid "years ago" -msgstr "" +msgstr "annos passate" #: private/user/manager.php:232 msgid "" diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 4d49d8b7bd6..499e1889eab 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -41,21 +41,21 @@ msgstr "" #: admin/controller.php:99 msgid "Email sent" -msgstr "" +msgstr "Message de e-posta inviate" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -231,23 +231,23 @@ msgstr "" #: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "Contrasigno multo debile" #: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "Contrasigno debile" #: js/personal.js:276 msgid "So-so password" -msgstr "" +msgstr "Contrasigno passabile" #: js/personal.js:277 msgid "Good password" -msgstr "" +msgstr "Contrasigno bon" #: js/personal.js:278 msgid "Strong password" -msgstr "" +msgstr "Contrasigno forte" #: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." @@ -348,7 +348,7 @@ msgstr "" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" -msgstr "" +msgstr "Aviso de securitate" #: templates/admin.php:50 #, php-format @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Registro" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Plus" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,131 +174,123 @@ msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses msgid "URL cannot be empty" msgstr "URL tidak boleh kosong" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Pada folder home, 'Shared' adalah nama berkas yang sudah digunakan" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} sudah ada" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Tidak dapat membuat berkas" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Tidak dapat membuat folder" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Bagikan" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Galat saat memindahkan berkas" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Galat" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Tidak dapat mengubah nama berkas" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Galat saat menghapus berkas." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n folder" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n berkas" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} dan {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Mengunggah %n berkas" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikasi Enskripsi telah diaktifkan tetapi kunci tidak diinisialisasi, silakan log-out dan log-in lagi" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Kunci privat tidak sah untuk Aplikasi Enskripsi. Silakan perbarui sandi kunci privat anda pada pengaturan pribadi untuk memulihkan akses ke berkas anda yang dienskripsi." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Enskripi telah dinonaktifkan tetapi berkas anda tetap dienskripsi. Silakan menuju ke pengaturan pribadi untuk deskrip berkas anda." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Ukuran" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Dimodifikasi" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nama folder tidak sah. Menggunakan 'Shared' sudah digunakan." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s tidak dapat diubah nama" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 18118cf1fec..90b99213032 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Silakan periksa ulang panduan instalasi." msgid "%s shared »%s« with you" msgstr "%s membagikan »%s« dengan anda" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index c1fe83f4b4d..1ce9c6bf3c8 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Email terkirim" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Enkripsi" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "Izinkan pemberitahuan email" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Memaksa klien untuk menghubungkan ke %s menggunakan sambungan yang dienskripsi." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Mohon sambungkan ke %s menggunakan HTTPS untuk mengaktifkannya atau menonaktifkan penegakan SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Alamat server" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Catat" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Lainnya" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versi" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending mis msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Deila" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Villa" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nafn" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Stærð" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Breytt" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 2bc042e6fe8..cce021e1db7 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index 5ed711d9c12..b726e8a309e 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Tölvupóstur sendur" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Dulkóðun" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Host nafn netþjóns" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Meira" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Minna" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -30,7 +30,7 @@ msgstr "Impossibile spostare %s - un file con questo nome esiste già" msgid "Could not move %s" msgstr "Impossibile spostare %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Il nome del file non può essere vuoto." @@ -39,18 +39,18 @@ msgstr "Il nome del file non può essere vuoto." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" non è un nome file valido." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "La cartella di destinazione è stata spostata o eliminata." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -176,134 +176,126 @@ msgstr "Caricamento del file in corso. La chiusura della pagina annullerà il ca msgid "URL cannot be empty" msgstr "L'URL non può essere vuoto." -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Nella cartella home 'Shared' è un nome riservato" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Impossibile creare il file" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Impossibile creare la cartella" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Errore durante il recupero dello URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Condividi" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Errore durante lo spostamento del file" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Errore" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "In corso" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Impossibile rinominare il file" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Errore durante l'eliminazione del file." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n cartella" msgstr[1] "%n cartelle" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n file" msgstr[1] "%n file" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Caricamento di %n file in corso" msgstr[1] "Caricamento di %n file in corso" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" non è un nome file valido." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lo spazio di archiviazione è pieno, i file non possono essere più aggiornati o sincronizzati!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "L'applicazione di cifratura è abilitata, ma le chiavi non sono state inizializzate, disconnettiti ed effettua nuovamente l'accesso" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Chiave privata non valida per l'applicazione di cifratura. Aggiorna la password della chiave privata nelle impostazioni personali per ripristinare l'accesso ai tuoi file cifrati." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "La cifratura è stata disabilitata ma i tuoi file sono ancora cifrati. Vai nelle impostazioni personali per decifrare i file." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Dimensione" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificato" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s non può essere rinominato" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 61cf71193af..3f16402ee18 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,6 +21,14 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,103 +296,108 @@ msgstr "Leggi attentamente le guide d'installazione." msgid "%s shared »%s« with you" msgstr "%s ha condiviso «%s» con te" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Condivisione di %s non riuscita, poiché l'utente %s è il proprietario dell'oggetto" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché l'utente %s non esiste" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché l'utente %s non appartiene ad alcun gruppo di cui %s è membro" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché l'oggetto è già condiviso con %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché il gruppo %s non esiste" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché %s non appartiene al gruppo %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché i link non sono ammessi" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Il tipo di condivisione %s non è valido per %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Il motore di condivisione %s deve implementare l'interfaccia OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Motore di condivisione %s non trovato" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Motore di condivisione di %s non trovato" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché l'utente %s l'ha condiviso precedentemente" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché i permessi sono superiori a quelli rilasciati a %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché la ri-condivisione non è ammessa" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché il motore di condivisione per %s non riesce a trovare la sua origine" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Condivisione di %s non riuscita, poiché il file non risiede nella cache" #: private/tags.php:193 #, php-format diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 520335ddac5..343893ee43f 100644 --- a/l10n/it/settings.po +++ b/l10n/it/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 23:31+0000\n" -"Last-Translator: idetao \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -51,15 +51,15 @@ msgstr "Email inviata" msgid "You need to set your user email before being able to send test emails." msgstr "Devi impostare l'indirizzo del tuo utente prima di poter provare l'invio delle email." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Modalità di invio" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Cifratura" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Metodo di autenticazione" @@ -527,91 +527,111 @@ msgstr "Consenti le notifiche tramite posta elettronica" msgid "Allow users to send mail notification for shared files" msgstr "Consenti agli utenti di mandare e-mail di notifica per i file condivisi" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Protezione" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forza i client a connettersi a %s tramite una connessione cifrata." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Connettiti al tuo %s tramite HTTPS per abilitare o disabilitare l'applicazione di SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Server di posta" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Viene utilizzato per inviare le notifiche." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Indirizzo mittente" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Autenticazione richiesta" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Indirizzo del server" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Porta" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenziali" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nome utente SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Password SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Prova impostazioni email" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Invia email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Altro" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Meno" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versione" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "目標のフォルダは移動されたか、削除されました。" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -180,131 +180,123 @@ msgstr "ファイル転送を実行中です。今このページから移動す msgid "URL cannot be empty" msgstr "URL は空にできません" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "ホームフォルダーでは、'Shared' はシステムが使用する予約済みのファイル名です" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在します" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "ファイルを作成できませんでした" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "フォルダーを作成できませんでした" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "URL取得エラー" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "共有" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "完全に削除する" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "ファイルの移動エラー" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "エラー" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "中断" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "ファイルの名前変更ができませんでした" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "ファイルの削除エラー。" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個のフォルダー" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個のファイル" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} と {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個のファイルをアップロード中" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" は無効なファイル名です。" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "あなたのストレージは一杯です。ファイルの更新と同期はもうできません!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "ストレージがほぼ一杯です({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "暗号化アプリは有効ですが、あなたの暗号化キーは初期化されていません。ログアウトした後に、再度ログインしてください" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "暗号化アプリの無効なプライベートキーです。あなたの暗号化されたファイルへアクセスするために、個人設定からプライベートキーのパスワードを更新してください。" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "暗号化の機能は無効化されましたが、ファイルはすでに暗号化されています。個人設定からファイルを複合を行ってください。" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "名前" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "サイズ" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "更新日時" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "無効なフォルダー名。「Shared」の利用は予約されています。" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%sの名前を変更できませんでした" diff --git a/l10n/ja/lib.po b/l10n/ja/lib.po index 9a1364fed7c..b5739f97c54 100644 --- a/l10n/ja/lib.po +++ b/l10n/ja/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -22,6 +22,14 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -289,99 +297,104 @@ msgstr "インストールガイドをよく確認してくだ msgid "%s shared »%s« with you" msgstr "%sが あなたと »%s«を共有しました" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ja/settings.po b/l10n/ja/settings.po index 449ce5efff8..3019b69a374 100644 --- a/l10n/ja/settings.po +++ b/l10n/ja/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -52,15 +52,15 @@ msgstr "メールを送信しました" msgid "You need to set your user email before being able to send test emails." msgstr "ユーザーメールを設定して初めて、テストメールを送信することができるようになります。" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "送信モード" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "暗号化" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "認証方法" @@ -528,91 +528,111 @@ msgstr "メール通知を許可" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "クライアントから %sへの接続を常に暗号化します。" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "強制的なSSL接続を有効/無効にするには、HTTPS経由で %s へ接続してください。" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "メールサーバー" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "これは通知の送信に使われます。" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "アドレスから" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "要求される認証" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "サーバーアドレス" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "ポート" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "資格情報" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP ユーザー名" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP パスワード" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "メールテスト設定" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "メールを送信" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "ログ" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "もっと見る" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "閉じる" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "バージョン" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/jv/lib.po b/l10n/jv/lib.po index 0915bb223d3..353c66e7ba2 100644 --- a/l10n/jv/lib.po +++ b/l10n/jv/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: jv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/jv/settings.po b/l10n/jv/settings.po index fe9b21e6e5c..3644843d738 100644 --- a/l10n/jv/settings.po +++ b/l10n/jv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Javanese (http://www.transifex.com/projects/p/owncloud/language/jv/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "მიმდინარეობს ფაილის ატვირ msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "გაზიარება" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "შეცდომა" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "სახელი" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "ზომა" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "შეცვლილია" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index b7d235cf31c..1572016e290 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "გთხოვთ გადაათვალიეროთ ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "ចែក​រំលែក" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "កំហុស" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "ឈ្មោះ" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "ទំហំ" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/km/lib.po b/l10n/km/lib.po index 84aafbd299a..3f0078754ba 100644 --- a/l10n/km/lib.po +++ b/l10n/km/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -18,6 +18,14 @@ msgstr "" "Language: km\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/km/settings.po b/l10n/km/settings.po index 23a00b4f698..1a3a0cff7c4 100644 --- a/l10n/km/settings.po +++ b/l10n/km/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Khmer (http://www.transifex.com/projects/p/owncloud/language/km/)\n" "MIME-Version: 1.0\n" @@ -49,15 +49,15 @@ msgstr "បាន​ផ្ញើ​អ៊ីមែល" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "កូដនីយកម្ម" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -525,91 +525,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "សុវត្ថិភាព" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "បង្ខំ HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "អាសយដ្ឋាន​ម៉ាស៊ីន​បម្រើ" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "កម្រិត Log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "ច្រើន​ទៀត" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "តិច" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "កំណែ" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 087a9e594ec..4cee69fe771 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po index 7249040d4fc..81d7d001d5f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -179,131 +179,123 @@ msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 msgid "URL cannot be empty" msgstr "URL이 비어있을 수 없음" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "'공유됨'은 홈 폴더의 예약된 파일 이름임" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "파일을 만들 수 없음" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "폴더를 만들 수 없음" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "URL을 가져올 수 없음" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "공유" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "영구히 삭제" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "파일 이동 오류" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "오류" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "대기 중" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "이름을 변경할 수 없음" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "파일 삭제 오류." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "폴더 %n개" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "파일 %n개" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} 그리고 {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "파일 %n개 업로드 중" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "저장 공간이 가득 찼습니다. 파일을 업데이트하거나 동기화할 수 없습니다!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "암호화 앱이 활성화되어 있지만 키가 초기화되지 않았습니다. 로그아웃한 후 다시 로그인하십시오" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "암호화 앱의 개인 키가 잘못되었습니다. 암호화된 파일에 다시 접근하려면 개인 설정에서 개인 키 암호를 업데이트해야 합니다." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "암호화는 해제되어 있지만, 파일은 아직 암호화되어 있습니다. 개인 설정에서 파일을 복호화하십시오." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "다운로드 준비 중입니다. 파일 크기가 크면 시간이 오래 걸릴 수도 있습니다." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "이름" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "크기" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "수정됨" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "폴더 이름이 잘못되었습니다. '공유됨'은 예약된 폴더 이름입니다." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s의 이름을 변경할 수 없습니다" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index a3d740a0d6d..3282c2f6e60 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -22,6 +22,14 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -289,99 +297,104 @@ msgstr "설치 가이드를 다시 한 번 확인하십시오." msgid "%s shared »%s« with you" msgstr "%s 님이 %s을(를) 공유하였습니다" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 2c0186c6f76..5146c505d00 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -52,15 +52,15 @@ msgstr "이메일 발송됨" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "암호화" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -528,91 +528,111 @@ msgstr "메일 알림 허용" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "보안" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "클라이언트가 %s에 연결할 때 암호화 연결을 강제로 사용합니다." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL 강제 설정을 변경하려면 %s에 HTTPS로 연결해야 합니다." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "전자우편 서버" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "보낸 이 주소" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "인증 필요함" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "서버 주소" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "포트" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "자격 정보" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP 사용자명" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP 암호" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "시험용 전자우편 설정" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "전자우편 보내기" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "로그" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "더 중요함" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "버전" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "هاوبەشی کردن" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "هه‌ڵه" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "ناو" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 9f9aa8fd223..b7415893ecf 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index ac3dc088f0a..28870a3e3d3 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "نهێنیکردن" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "ناونیشانی ڕاژه" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "File Upload am gaang. Wann's de des Säit verléiss gëtt den Upload ofg msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Deelen" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Ëm-benennen" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fehler" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Numm" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Gréisst" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Geännert" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 392bc813a98..e875ee307c6 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "Den/D' %s huet »%s« mat dir gedeelt" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 2f42e135ceb..619604ebe17 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Email geschéckt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Server Adress" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Méi" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Manner" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neleistinas pavadinimas, '\\', '/', '<', '>', ':', '\"', '|', '?' ir '*' yra neleidžiami." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -176,137 +176,129 @@ msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutr msgid "URL cannot be empty" msgstr "URL negali būti tuščias." -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Pradiniame aplanke failo pavadinimas „Shared“ yra rezervuotas" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Neįmanoma sukurti failo" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Neįmanoma sukurti aplanko" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Klauda gaunant URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Dalintis" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Klaida perkeliant failą" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Klaida" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Neįmanoma pervadinti failo" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Klaida trinant failą." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n aplankas" msgstr[1] "%n aplankai" msgstr[2] "%n aplankų" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n failas" msgstr[1] "%n failai" msgstr[2] "%n failų" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} ir {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Įkeliamas %n failas" msgstr[1] "Įkeliami %n failai" msgstr[2] "Įkeliama %n failų" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Jūsų visa vieta serveryje užimta" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsų vieta serveryje beveik visa užimta ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Šifravimo programa įjungta, bet Jūsų raktai nėra pritaikyti. Prašome atsijungti ir vėl prisijungti" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Netinkamas privatus raktas Šifravimo programai. Prašome atnaujinti savo privataus rakto slaptažodį asmeniniuose nustatymuose, kad atkurti prieigą prie šifruotų failų." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifravimas buvo išjungtas, bet Jūsų failai vis dar užšifruoti. Prašome eiti į asmeninius nustatymus ir iššifruoti savo failus." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunčiamas didelis failas." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Dydis" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Pakeista" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Netinkamas aplanko pavadinimas. „Shared“ pavadinimas yra rezervuotas." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s negali būti pervadintas" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 1dde1d9c2d9..1ebb5244f1d 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,6 +21,14 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,99 +296,104 @@ msgstr "Prašome pažiūrėkite dar kartą diegimo instrukcijas msgid "%s shared »%s« with you" msgstr "%s pasidalino »%s« su tavimi" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 1d104c21979..350980eba08 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -52,15 +52,15 @@ msgstr "Laiškas išsiųstas" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Šifravimas" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -528,91 +528,111 @@ msgstr "Leisti el. pašto perspėjimą" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Saugumas" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Reikalauti HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Verčia klientus jungtis prie %s per šifruotą ryšį." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Prašome prisijungti prie savo %s per HTTPS, kad įjungti ar išjungti SSL reikalavimą." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Serverio adresas" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Prievadas" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Daugiau" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versija" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,137 +174,129 @@ msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Dalīties" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Kļūda" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapes" msgstr[1] "%n mape" msgstr[2] "%n mapes" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n faili" msgstr[1] "%n fails" msgstr[2] "%n faili" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n" msgstr[1] "Augšupielāde %n failu" msgstr[2] "Augšupielāde %n failus" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Jūsu krātuve ir pilna, datnes vairs nevar augšupielādēt vai sinhronizēt!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrēšana tika atslēgta, tomēr jūsu faili joprojām ir šifrēti. Atšifrēt failus var Personiskajos uzstādījumos." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nosaukums" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Izmērs" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Mainīts" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s nevar tikt pārsaukts" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 7a7d03523e8..57643d7f432 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību msgid "%s shared »%s« with you" msgstr "%s kopīgots »%s« ar jums" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 8a4ea7c52b4..720551be48c 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Vēstule nosūtīta" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Šifrēšana" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Drošība" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Uzspiest klientiem pieslēgties pie %s caur šifrētu savienojumu." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Lūdzu slēdzieties pie %s caur HTTPS lai iespējotu vai atspējotu SSL izpildīšanu" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Servera adrese" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Ports" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Akreditācijas dati" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Vairāk" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versija" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,134 +174,126 @@ msgstr "Подигање на датотека е во тек. Напуштењ msgid "URL cannot be empty" msgstr "URL-то не може да биде празно" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Во домашната папка, 'Shared' е резервирано има на датотека/папка" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Не множам да креирам датотека" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Не можам да креирам папка" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Сподели" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Трајно избришани" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Грешка при префрлање на датотека" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Грешка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Чека" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Не можам да ја преименувам датотеката" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Вашиот сториџ е полн, датотеките веќе не можат да се освежуваат или синхронизираат!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Вашиот сториџ е скоро полн ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Вашето преземање се подготвува. Ова може да потрае до колку датотеките се големи." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Големина" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Променето" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s не може да биде преименуван" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index ab88decb08d..99993662a95 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 66c5b91e912..6918bfbeec1 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Е-порака пратена" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Енкрипција" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "Овозможи известување по електронска по msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Адреса на сервер" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Порта" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Записник" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Повеќе" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Помалку" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Верзија" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ml/lib.po b/l10n/ml/lib.po index 9b18b8c069e..a9665cfcf27 100644 --- a/l10n/ml/lib.po +++ b/l10n/ml/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: ml\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ml/settings.po b/l10n/ml/settings.po index 873ea5feae6..bb4bf532335 100644 --- a/l10n/ml/settings.po +++ b/l10n/ml/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (http://www.transifex.com/projects/p/owncloud/language/ml/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index e2d3ce261cf..89380c67c32 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ml_IN/settings.po b/l10n/ml_IN/settings.po index 8dabc76b3d7..3dd09c0bcfa 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/mn/lib.po b/l10n/mn/lib.po index 0ba562d4874..f0985c92ea2 100644 --- a/l10n/mn/lib.po +++ b/l10n/mn/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: mn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/mn/settings.po b/l10n/mn/settings.po index aab6d4b79f6..487e064ed3f 100644 --- a/l10n/mn/settings.po +++ b/l10n/mn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Mongolian (http://www.transifex.com/projects/p/owncloud/language/mn/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Kongsi" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Namakan" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Ralat" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Saiz" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Dimodifikasi" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index a8145ee4dfc..7def985584a 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index 0bb3d17d5dd..249b907cc74 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Alamat pelayan" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index ab59c1e32b5..95f11d4383d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index f4a4215acd9..964ffe75dae 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,134 +177,126 @@ msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." msgid "URL cannot be empty" msgstr "URL kan ikke være tom" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "I hjemmemappen er 'Shared' et reservert filnavn" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Klarte ikke å opprette fil" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Klarte ikke å opprette mappe" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Feil ved henting av URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Del" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Slett permanent" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Gi nytt navn" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Feil ved flytting av fil" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Feil" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Klarte ikke å gi nytt navn til fil" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Feil ved sletting av fil." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laster opp %n fil" msgstr[1] "Laster opp %n filer" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lagringsplass er oppbrukt, filer kan ikke lenger oppdateres eller synkroniseres!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lagringsplass er nesten brukt opp ([usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "App for kryptering er aktivert men nøklene dine er ikke satt opp. Logg ut og logg inn igjen." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ugyldig privat nøkkel for Krypterings-app. Oppdater passordet for din private nøkkel i dine personlige innstillinger for å gjenopprette tilgang til de krypterte filene dine." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering ble slått av men filene dine er fremdeles kryptert. Gå til dine personlige innstillinger for å dekryptere filene dine." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Størrelse" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Endret" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ulovlig mappenavn. Bruken av 'Shared' er reservert." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "Kunne ikke gi nytt navn til %s" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index f799a36058a..6979989c402 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Vennligst dobbelsjekk installasjonsguiden." msgid "%s shared »%s« with you" msgstr "%s delte »%s« med deg" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index d109f8b390a..a5a8b1efa7a 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -51,15 +51,15 @@ msgstr "E-post sendt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -527,91 +527,111 @@ msgstr "Tillat påminnelser i e-post" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvinger klientene til å koble til %s via en kryptert forbindelse." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Vennligst koble til din %s via HTTPS for å aktivere eller deaktivere tvungen SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Fra adresse" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Server-adresse" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP-brukernavn" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP-passord" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Send e-post" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Logg" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mer" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versjon" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/nds/lib.po b/l10n/nds/lib.po index b7c0c86c549..7b5bc15867a 100644 --- a/l10n/nds/lib.po +++ b/l10n/nds/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: nds\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nds/settings.po b/l10n/nds/settings.po index 9ab6b674d29..f08a085c0ef 100644 --- a/l10n/nds/settings.po +++ b/l10n/nds/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Low German (http://www.transifex.com/projects/p/owncloud/language/nds/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 702c6f532fc..b2d62c5b52f 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index 74a3a50b03f..b38cfc96579 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -29,7 +29,7 @@ msgstr "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam" msgid "Could not move %s" msgstr "Kon %s niet verplaatsen" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Bestandsnaam kan niet leeg zijn." @@ -38,18 +38,18 @@ msgstr "Bestandsnaam kan niet leeg zijn." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" is een ongeldige bestandsnaam." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "De doelmap is verplaatst of verwijderd." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de u msgid "URL cannot be empty" msgstr "URL mag niet leeg zijn" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "in de home map 'Shared' is een gereserveerde bestandsnaam" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Kon bestand niet creëren" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Kon niet creëren map" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Fout bij ophalen URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Delen" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Fout bij verplaatsen bestand" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fout" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "In behandeling" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Kon niet hernoemen bestand" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Fout bij verwijderen bestand." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "%n mappen" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "%n bestanden" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} en {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n bestand aan het uploaden" msgstr[1] "%n bestanden aan het uploaden" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" is een ongeldige bestandsnaam." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Uw opslagruimte zit vol, Bestanden kunnen niet meer worden ge-upload of gesynchroniseerd!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Crypto app is geactiveerd, maar uw sleutels werden niet geïnitialiseerd. Log uit en log daarna opnieuw in." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ongeldige privésleutel voor crypto app. Werk het privésleutel wachtwoord bij in uw persoonlijke instellingen om opnieuw toegang te krijgen tot uw versleutelde bestanden." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encryptie is uitgeschakeld maar uw bestanden zijn nog steeds versleuteld. Ga naar uw persoonlijke instellingen om uw bestanden te decoderen." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Naam" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Grootte" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Aangepast" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ongeldige mapnaam. Gebruik van 'Shared' is gereserveerd." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s kon niet worden hernoemd" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 1e135da68df..6c0ccbbe5da 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -20,6 +20,14 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -287,99 +295,104 @@ msgstr "Controleer de installatiehandleiding goed." msgid "%s shared »%s« with you" msgstr "%s deelde »%s« met jou" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 9fa5da4d6cc..dad578d0cb3 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 19:18+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -51,15 +51,15 @@ msgstr "E-mail verzonden" msgid "You need to set your user email before being able to send test emails." msgstr "U moet uw e-mailadres instellen voordat u testberichten kunt versturen." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Verstuurmodus" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Versleuteling" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Authenticatiemethode" @@ -527,91 +527,111 @@ msgstr "Toestaan e-mailnotificaties" msgid "Allow users to send mail notification for shared files" msgstr "Sta gebruikers toe om e-mailnotificaties te versturen voor gedeelde bestanden" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Dwingt de clients om een versleutelde verbinding te maken met %s" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-mailserver" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Dit wordt gestuurd voor het verzenden van meldingen." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Afzenderadres" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Authenticatie vereist" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Server adres" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Poort" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Inloggegevens" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP gebruikersnaam" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP wachtwoord" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Test e-mailinstellingen" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Versturen e-mail" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Meer" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Minder" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versie" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ugyldig namn, «\\», «/», «<», «>», «:», «\"», «|», «?» og «*» er ikkje tillate." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -176,134 +176,126 @@ msgstr "Fila lastar no opp. Viss du forlèt sida no vil opplastinga verta avbrot msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} finst allereie" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Del" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Slett for godt" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Feil ved flytting av fil" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Feil" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Under vegs" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mappe" msgstr[1] "%n mapper" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} og {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Lastar opp %n fil" msgstr[1] "Lastar opp %n filer" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Lagringa di er full, kan ikkje lenger oppdatera eller synkronisera!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Lagringa di er nesten full ({usedSpacePercent} %)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering er skrudd av, men filene dine er enno krypterte. Du kan dekryptera filene i personlege innstillingar." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Storleik" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Endra" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "Klarte ikkje å omdøypa på %s" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 09e48965bb6..b21742c6dc3 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." msgid "%s shared »%s« with you" msgstr "%s delte «%s» med deg" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 28284ea31b4..4eb56523983 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "E-post sendt" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -526,91 +526,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klientar til å kopla til %s med ei kryptert tilkopling." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Ver venleg å kopla til %s med HTTPS (eller skru av SSL-kravet)." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Tenaradresse" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Logg" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Meir" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/nqo/lib.po b/l10n/nqo/lib.po index f59370d050f..d156c452f59 100644 --- a/l10n/nqo/lib.po +++ b/l10n/nqo/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: nqo\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/nqo/settings.po b/l10n/nqo/settings.po index d59a28ea0d1..ac0aafcecbf 100644 --- a/l10n/nqo/settings.po +++ b/l10n/nqo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: N'ko (http://www.transifex.com/projects/p/owncloud/language/nqo/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo carga msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Parteja" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Error" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Talha" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificat" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 121200c85c8..5e23aada742 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 3678b57ca92..3044613b231 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Jornal" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/or_IN/lib.po b/l10n/or_IN/lib.po index 495eae5b05d..3b0afaf2817 100644 --- a/l10n/or_IN/lib.po +++ b/l10n/or_IN/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: or_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/or_IN/settings.po b/l10n/or_IN/settings.po index 970127c6562..4a0898c092c 100644 --- a/l10n/or_IN/settings.po +++ b/l10n/or_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Oriya (India) (http://www.transifex.com/projects/p/owncloud/language/or_IN/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "ਸਾਂਝਾ ਕਰੋ" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "ਨਾਂ ਬਦਲੋ" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "ਗਲਤੀ" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/pa/lib.po b/l10n/pa/lib.po index 2f059f913e0..9008d834aad 100644 --- a/l10n/pa/lib.po +++ b/l10n/pa/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: pa\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pa/settings.po b/l10n/pa/settings.po index 1e9c29e76cd..db15bbc6f8e 100644 --- a/l10n/pa/settings.po +++ b/l10n/pa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Panjabi (Punjabi) (http://www.transifex.com/projects/p/owncloud/language/pa/)\n" "MIME-Version: 1.0\n" @@ -48,15 +48,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "ਸਰਵਰ ਐਡਰੈਸ" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -33,7 +33,7 @@ msgstr "Nie można było przenieść %s - Plik o takiej nazwie już istnieje" msgid "Could not move %s" msgstr "Nie można było przenieść %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Nazwa pliku nie może być pusta." @@ -42,18 +42,18 @@ msgstr "Nazwa pliku nie może być pusta." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" jest nieprawidłową nazwą pliku." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Folder docelowy został przeniesiony lub usunięty" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -179,137 +179,129 @@ msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie z msgid "URL cannot be empty" msgstr "URL nie może być pusty" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "W katalogu domowym \"Shared\" jest zarezerwowana nazwa pliku" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Nie można utworzyć pliku" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Nie można utworzyć folderu" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Błąd przy pobieraniu adresu URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Udostępnij" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Błąd prz przenoszeniu pliku" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Błąd" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Nie można zmienić nazwy pliku" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Błąd podczas usuwania pliku" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n katalog" msgstr[1] "%n katalogi" msgstr[2] "%n katalogów" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n plik" msgstr[1] "%n pliki" msgstr[2] "%n plików" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} i {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Wysyłanie %n pliku" msgstr[1] "Wysyłanie %n plików" msgstr[2] "Wysyłanie %n plików" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" jest nieprawidłową nazwą pliku." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchronizowane!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Twój magazyn jest prawie pełny ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikacja szyfrująca jest aktywna, ale twoje klucze nie zostały zainicjowane, prosze wyloguj się i zaloguj ponownie." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz. Można zaktualizować hasło klucza prywatnego w ustawieniach osobistych w celu odzyskania dostępu do plików" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Szyfrowanie zostało wyłączone, ale nadal pliki są zaszyfrowane. Przejdź do ustawień osobistych i tam odszyfruj pliki." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nazwa" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Rozmiar" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modyfikacja" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Niepoprawna nazwa folderu. Wykorzystanie \"Shared\" jest zarezerwowane." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s nie można zmienić nazwy" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 87fb61c2dcd..62de5ed13a5 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,103 +294,108 @@ msgstr "Sprawdź ponownie przewodniki instalacji." msgid "%s shared »%s« with you" msgstr "%s Współdzielone »%s« z tobą" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s jest właścicielem elementu" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s nie istnieje" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s nie jest członkiem żadnej grupy której członkiem jest %s" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ element jest już współdzielony z %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ grupa %s nie istnieje" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ %s nie jest członkiem grupy %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ współdzielenie z linkami nie jest dozwolone" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Typ udziału %s nie jest właściwy dla %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Ustawienie uprawnień dla %s nie powiodło się, ponieważ uprawnienia wykraczają poza przydzielone %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Ustawienie uprawnień dla %s nie powiodło się, ponieważ element nie został znaleziony" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Zaplecze do współdzielenia %s musi implementować interfejs OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Zaplecze %s do współdzielenia nie zostało znalezione" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Zaplecze do współdzielenia %s nie zostało znalezione" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s jest udostępniającym" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ uprawnienia przekraczają te udzielone %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ ponowne współdzielenie nie jest dozwolone" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ zaplecze współdzielenia dla %s nie mogło znaleźć jego źródła" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Współdzielenie %s nie powiodło się, ponieważ plik nie może zostać odnaleziony w buforze plików" #: private/tags.php:193 #, php-format diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 26e58d91c70..7692687c57c 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 10:34+0000\n" -"Last-Translator: bobie \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -50,15 +50,15 @@ msgstr "E-mail wysłany" msgid "You need to set your user email before being able to send test emails." msgstr "Musisz najpierw ustawić użytkownika e-mail, aby móc wysyłać wiadomości testowe." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Tryb wysyłki" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Szyfrowanie" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Metoda autentykacji" @@ -526,91 +526,111 @@ msgstr "Pozwól na mailowe powiadomienia" msgid "Allow users to send mail notification for shared files" msgstr "Zezwól użytkownikom na wysyłanie powiadomień email dla udostępnionych plików" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Proszę połącz się do twojego %s za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Serwer pocztowy" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "To jest używane do wysyłania powiadomień" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Z adresu" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Wymagana autoryzacja" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adres Serwera" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Poświadczenia" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Użytkownik SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Hasło SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Ustawienia testowej wiadomości" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Wyślij email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Logi" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Więcej" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mniej" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Wersja" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -30,7 +30,7 @@ msgstr "Impossível mover %s - Um arquivo com este nome já existe" msgid "Could not move %s" msgstr "Impossível mover %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "O nome do arquivo não pode estar vazio." @@ -39,18 +39,18 @@ msgstr "O nome do arquivo não pode estar vazio." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" é um nome de arquivo inválido." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "A pasta de destino foi movida ou excluída." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -176,134 +176,126 @@ msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do msgid "URL cannot be empty" msgstr "URL não pode estar vazia" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Na pasta home 'Shared- Compartilhada' é um nome reservado" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Não foi possível criar o arquivo" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Não foi possível criar a pasta" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Erro ao buscar URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Compartilhar" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Erro movendo o arquivo" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Não foi possível renomear o arquivo" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Erro eliminando o arquivo." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n arquivo" msgstr[1] "%n arquivos" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Enviando %n arquivo" msgstr[1] "Enviando %n arquivos" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" é um nome de arquivo inválido." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Seu armazenamento está cheio, arquivos não podem mais ser atualizados ou sincronizados!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Seu armazenamento está quase cheio ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "App de encriptação está ativado, mas as chaves não estão inicializadas, por favor log-out e faça login novamente" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Chave do App de Encriptação é inválida. Por favor, atualize sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Encriptação foi desabilitada mas seus arquivos continuam encriptados. Por favor vá a suas configurações pessoais para descriptar seus arquivos." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamanho" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nome da pasta inválido. Uso de 'Shared' é reservado." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s não pode ser renomeado" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index de90637bce0..34aeb819310 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,103 +293,108 @@ msgstr "Por favor, confira os guias de instalação." msgid "%s shared »%s« with you" msgstr "%s compartilhou »%s« com você" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Compartilhamento %s falhou, porque o usuário %s é o proprietário do item" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Compartilhamento %s falhou, porque o usuário %s não existe" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Compartilhamento %s falhou, porque o usuário %s não é membro de nenhum grupo que o usuário %s pertença" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Compartilhamento %s falhou, porque este ítem já está compartilhado com %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Compartilhamento %s falhou, porque o grupo %s não existe" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Compartilhamento %s falhou, porque %s não é membro do grupo %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Compartilhamento %s falhou, porque compartilhamento com links não é permitido" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Tipo de compartilhamento %s não é válido para %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Definir permissões para %s falhou, porque o item não foi encontrado" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Compartilhando backend %s deve implementar a interface OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Compartilhamento backend %s não encontrado" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Compartilhamento backend para %s não encontrado" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Compartilhando %s falhou, porque o usuário %s é o compartilhador original" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Compartilhamento %s falhou, porque as permissões excedem as permissões concedidas a %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Compartilhamento %s falhou, porque recompartilhamentos não são permitidos" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Compartilhamento %s falhou, porque a infra-estrutura de compartilhamento para %s não conseguiu encontrar a sua fonte" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Compartilhamento %s falhou, porque o arquivo não pôde ser encontrado no cache de arquivos" #: private/tags.php:193 #, php-format diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index 35c10ae2ebd..12f8932fc89 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 11:31+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -49,15 +49,15 @@ msgstr "E-mail enviado" msgid "You need to set your user email before being able to send test emails." msgstr "Você precisa configurar seu e-mail de usuário antes de ser capaz de enviar e-mails de teste." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Modo enviar" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Criptografia" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Método de autenticação" @@ -525,91 +525,111 @@ msgstr "Permitir notificação por email" msgid "Allow users to send mail notification for shared files" msgstr "Permitir aos usuários enviar notificação de email para arquivos compartilhados" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Segurança" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Obrigar os clientes que se conectem a %s através de uma conexão criptografada." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor, se conectar ao seu %s via HTTPS para forçar ativar ou desativar SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Servidor de Email" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Isto é usado para o envio de notificações." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Do Endereço" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Autenticação é requerida" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Endereço do servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Porta" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nome do Usuário SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Senha SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Configurações de e-mail de teste" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Enviar email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Registro" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mais" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versão" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,134 +177,126 @@ msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página msgid "URL cannot be empty" msgstr "URL não pode estar vazio" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Na pasta pessoal \"Partilhado\" é um nome de ficheiro reservado" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Não pôde criar ficheiro" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Não pôde criar pasta" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Erro ao obter URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Partilhar" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Erro ao mover o ficheiro" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Erro" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Não pôde renomear o ficheiro" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Erro ao apagar o ficheiro." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n pasta" msgstr[1] "%n pastas" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n ficheiro" msgstr[1] "%n ficheiros" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} e {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "A carregar %n ficheiro" msgstr[1] "A carregar %n ficheiros" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "O seu armazenamento está cheio, os ficheiros não podem ser sincronizados." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "A Aplicação de Encriptação está ativada, mas as suas chaves não inicializaram. Por favor termine e inicie a sessão novamente" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Chave privada inválida da Aplicação de Encriptação. Por favor atualize a sua senha de chave privada nas definições pessoais, para recuperar o acesso aos seus ficheiros encriptados." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "A encriptação foi desactivada mas os seus ficheiros continuam encriptados. Por favor consulte as suas definições pessoais para desencriptar os ficheiros." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Tamanho" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificado" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Nome de pasta inválido. Utilização de \"Partilhado\" está reservada." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s não pode ser renomeada" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 182227a14fb..8aab0d9e282 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -6,14 +6,14 @@ # Mouxy , 2013 # Duarte Velez Grilo , 2013 # moura232 , 2013 -# Helder Meneses , 2013 +# Helder Meneses , 2013-2014 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 14:50+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,13 +76,13 @@ msgstr "" msgid "" "Can not decrypt this file, probably this is a shared file. Please ask the " "file owner to reshare the file with you." -msgstr "" +msgstr "Não foi possível desencriptar este ficheiro, possivelmente é um ficheiro partilhado. Peça ao proprietário do ficheiro para voltar a partilhar o ficheiro consigo." #: files/error.php:22 files/error.php:27 msgid "" "Unknown error please check your system settings or contact your " "administrator" -msgstr "" +msgstr "Erro desconhecido. Verifique por favor as definições do sistema ou contacte o seu administrador" #: hooks/hooks.php:64 msgid "Missing requirements." @@ -109,97 +109,97 @@ msgstr "" #: templates/invalid_private_key.php:8 msgid "Go directly to your " -msgstr "" +msgstr "Ir directamente para o seu" #: templates/invalid_private_key.php:8 msgid "personal settings" msgstr "configurações personalizadas " -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "Encriptação" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "Active a chave de recuperação (permite recuperar os ficheiros no caso de perda da password):" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "Chave de recuperação da conta" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "Activado" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "Desactivado" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "Alterar a chave de recuperação:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "Chave anterior de recuperação da conta" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "Nova chave de recuperação da conta" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "Mudar a Password" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "" -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "Password anterior da conta" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "Password actual da conta" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "ativar recuperação do password:" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "Ao activar esta opção, tornar-lhe-a possível a obtenção de acesso aos seus ficheiros encriptados caso perca a password." -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "Actualizadas as definições de recuperação de ficheiros" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "Não foi possível actualizar a recuperação de ficheiros" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index ab8309c2a07..91ba10b8355 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -20,6 +20,14 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -287,99 +295,104 @@ msgstr "Por favor verifique installation guides." msgid "%s shared »%s« with you" msgstr "%s partilhado »%s« contigo" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 725d5683027..910abe64020 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -54,15 +54,15 @@ msgstr "E-mail enviado" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Modo de envio" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Encriptação" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -530,91 +530,111 @@ msgstr "Permitir notificação por email" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Segurança" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Forçar os clientes a ligar a %s através de uma ligação encriptada" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Por favor ligue-se a %s através de uma ligação HTTPS para ligar/desligar o uso de ligação por SSL" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Servidor de email" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Isto é utilizado para enviar notificações" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Do endereço" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Autenticação necessária" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Endereço do servidor" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Porto" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Credenciais" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Nome de utilizador SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Password SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Testar configurações de email" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Enviar email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Registo" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mais" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menos" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versão" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the , 2014 # andreiacob , 2014 # roentgen , 2014 # corneliu.e , 2013 @@ -14,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -34,27 +35,27 @@ msgstr "%s nu se poate muta - Fișierul cu acest nume există deja " msgid "Could not move %s" msgstr "Nu se poate muta %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Numele fișierului nu poate rămâne gol." #: ajax/newfile.php:63 #, php-format msgid "\"%s\" is an invalid file name." -msgstr "" +msgstr "\"%s\" este un nume de fișier nevalid" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nume nevalide, '\\', '/', '<', '>', ':', '\"', '|', '?' și '*' nu sunt permise." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." -msgstr "" +msgstr "Dosarul țintă a fost mutat sau șters." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -63,7 +64,7 @@ msgstr "" #: ajax/newfile.php:97 msgid "Not a valid source" -msgstr "" +msgstr "Sursă nevalidă" #: ajax/newfile.php:102 msgid "" @@ -156,12 +157,12 @@ msgstr "Nu se poate încărca {filename} deoarece este un director sau are mări #: js/file-upload.js:266 msgid "Total file size {size1} exceeds upload limit {size2}" -msgstr "" +msgstr "Mărimea fișierului este {size1} ce depășește limita de incarcare de {size2}" #: js/file-upload.js:276 msgid "" "Not enough free space, you are uploading {size1} but only {size2} is left" -msgstr "" +msgstr "Spațiu liber insuficient, încărcați {size1} însă doar {size2} disponibil rămas" #: js/file-upload.js:353 msgid "Upload cancelled." @@ -180,137 +181,129 @@ msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerup msgid "URL cannot be empty" msgstr "URL nu poate fi gol" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} există deja" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Nu s-a putut crea fisierul" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Nu s-a putut crea folderul" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" -msgstr "" +msgstr "Eroare încarcare URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Partajează" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Șterge permanent" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Redenumește" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Eroare la mutarea fișierului" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Eroare" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "În așteptare" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Nu s-a putut redenumi fisierul" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." -msgstr "" +msgstr "Eroare la ștergerea fisierului." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n director" msgstr[1] "%n directoare" msgstr[2] "%n directoare" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fișier" msgstr[1] "%n fișiere" msgstr[2] "%n fișiere" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} și {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Se încarcă %n fișier." msgstr[1] "Se încarcă %n fișiere." msgstr[2] "Se încarcă %n fișiere." -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." -msgstr "" +msgstr "\"{name}\" este un nume de fișier nevalid." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Spațiul de stocare este plin, fișierele nu mai pot fi actualizate sau sincronizate!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Spațiul de stocare este aproape plin ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "criptarea a fost disactivata dar fisierele sant inca criptate.va rog intrati in setarile personale pentru a decripta fisierele" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Se pregătește descărcarea. Aceasta poate dura ceva timp dacă fișierele sunt mari." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Nume" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Mărime" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Modificat" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s nu a putut fi redenumit" @@ -318,7 +311,7 @@ msgstr "%s nu a putut fi redenumit" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Încarcă (max. %s)" #: templates/admin.php:4 msgid "File handling" @@ -358,7 +351,7 @@ msgstr "Nou" #: templates/index.php:8 msgid "New text file" -msgstr "" +msgstr "Un nou fișier text" #: templates/index.php:9 msgid "Text file" @@ -366,7 +359,7 @@ msgstr "Fișier text" #: templates/index.php:12 msgid "New folder" -msgstr "" +msgstr "Un nou dosar" #: templates/index.php:13 msgid "Folder" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 6ec7ba546ef..c749df94cdc 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -18,6 +18,14 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "Vă rugăm să verificați ghiduri de instalare." msgid "%s shared »%s« with you" msgstr "%s Partajat »%s« cu tine de" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index edb9cda2e65..2b244fc458d 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mozguletz <__sashok@mail.ru>, 2014 # corneliu.e , 2013 # sergiu_sechel , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -30,11 +31,11 @@ msgstr "Salvat" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "verifică setările de e-mail" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Dacă ai primit acest e-mail atunci setările par a fi corecte." #: admin/controller.php:94 msgid "" @@ -49,17 +50,17 @@ msgstr "Mesajul a fost expediat" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" -msgstr "" +msgstr "Modul de expediere" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Încriptare" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" -msgstr "" +msgstr "Modul de autentificare" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -72,11 +73,11 @@ msgstr "Eroare la autentificare" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "Numele tău complet a fost schimbat." #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "Nu s-a puput schimba numele complet" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -88,17 +89,17 @@ msgstr "Nu s-a putut adăuga grupul" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "Fișierele au fost decriptate cu succes" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "Nu s-a puput decripta fișierele tale, verifică owncloud.log sau întreabă administratorul" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "Nu s-a puput decripta fișierele tale, verifică parola și încearcă din nou" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -148,7 +149,7 @@ msgstr "Parolă greșită" #: changepassword/controller.php:36 msgid "No user supplied" -msgstr "" +msgstr "Nici un utilizator furnizat" #: changepassword/controller.php:68 msgid "" @@ -173,7 +174,7 @@ msgstr "Imposibil de schimbat parola" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "Se expediază..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -201,11 +202,11 @@ msgstr "Aşteptaţi vă rog...." #: js/apps.js:103 js/apps.js:104 js/apps.js:125 msgid "Error while disabling app" -msgstr "" +msgstr "Eroare în timpul dezactivării aplicației" #: js/apps.js:124 js/apps.js:138 js/apps.js:139 msgid "Error while enabling app" -msgstr "" +msgstr "Eroare în timpul activării applicației" #: js/apps.js:149 msgid "Updating...." @@ -229,15 +230,15 @@ msgstr "Actualizat" #: js/personal.js:243 msgid "Select a profile picture" -msgstr "" +msgstr "Selectează o imagine de profil" #: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "Parolă foarte slabă" #: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "Parolă slabă" #: js/personal.js:276 msgid "So-so password" @@ -253,7 +254,7 @@ msgstr "" #: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." -msgstr "" +msgstr "Decriptare fișiere... Te rog așteaptă, poate dura ceva timp." #: js/users.js:47 msgid "deleted" @@ -298,7 +299,7 @@ msgstr "Trebuie să furnizaţi o parolă validă" #: js/users.js:516 msgid "Warning: Home directory for user \"{user}\" already exists" -msgstr "" +msgstr "Avertizare: Dosarul Acasă pentru utilizatorul \"{user}\" deja există" #: personal.php:48 personal.php:49 msgid "__language_name__" @@ -342,11 +343,11 @@ msgstr "" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -381,7 +382,7 @@ msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sin #: templates/admin.php:79 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Vă rugăm să verificați ghiduri de instalare." #: templates/admin.php:90 msgid "Module 'fileinfo' missing" @@ -395,7 +396,7 @@ msgstr "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest mod #: templates/admin.php:104 msgid "Your PHP version is outdated" -msgstr "" +msgstr "Versiunea PHP folosită este învechită" #: templates/admin.php:107 msgid "" @@ -499,7 +500,7 @@ msgstr "Permite încărcări publice" #: templates/admin.php:228 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Permite utilizatorilor sa activeze opțiunea de încărcare a fișierelor în dosarele lor publice de către alte persoane" #: templates/admin.php:235 msgid "Allow resharing" @@ -519,97 +520,117 @@ msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același gr #: templates/admin.php:253 msgid "Allow mail notification" -msgstr "" +msgstr "Permite notificări prin e-mail" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "Permite utilizatorilor sa expedieze notificări prin e-mail pentru dosarele comune" + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Securitate" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Forțează clienții să se conecteze la %s folosind o conexiune sigură" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresa server-ului" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Portul" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" -msgstr "" +msgstr "Nume utilizator SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" -msgstr "" +msgstr "Parolă SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" -msgstr "" +msgstr "Verifică setările de e-mail" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" -msgstr "" +msgstr "Expediază mesajul" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mai mult" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the access your Files via " "WebDAV" -msgstr "" +msgstr "Folosește această adresă pentru acces la fișierele tale folosind WebDAV" #: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" @@ -779,11 +800,11 @@ msgstr "" #: templates/personal.php:157 msgid "Log-in password" -msgstr "" +msgstr "Parolă" #: templates/personal.php:162 msgid "Decrypt all Files" -msgstr "" +msgstr "Decriptează toate fișierele" #: templates/users.php:19 msgid "Login Name" @@ -795,13 +816,13 @@ msgstr "Crează" #: templates/users.php:34 msgid "Admin Recovery Password" -msgstr "" +msgstr "Parolă de recuperare a Administratorului" #: templates/users.php:35 templates/users.php:36 msgid "" "Enter the recovery password in order to recover the users files during " "password change" -msgstr "" +msgstr "Introdu parola de recuperare pentru a recupera fișierele utilizatorilor în timpul schimbării parolei" #: templates/users.php:40 msgid "Default Storage" @@ -829,7 +850,7 @@ msgstr "Stocare" #: templates/users.php:106 msgid "change full name" -msgstr "" +msgstr "schimbă numele complet" #: templates/users.php:110 msgid "set new password" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 6f7fbe2af7a..8c1d9aecec7 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -19,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -39,7 +39,7 @@ msgstr "Невозможно переместить %s - файл с таким msgid "Could not move %s" msgstr "Невозможно переместить %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Имя файла не может быть пустым." @@ -48,18 +48,18 @@ msgstr "Имя файла не может быть пустым." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" это не правильное имя файла." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неправильное имя: символы '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Целевой каталог был перемещен или удален." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -185,137 +185,129 @@ msgstr "Идёт загрузка файла. Покинув страницу, msgid "URL cannot be empty" msgstr "Ссылка не может быть пустой." -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "'Shared' - это зарезервированное имя файла в домашнем каталоге" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Не удалось создать файл" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Не удалось создать каталог" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Ошибка получения URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Открыть доступ" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Удалить окончательно" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Ошибка при перемещении файла" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Ошибка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Не удалось переименовать файл" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Ошибка при удалении файла." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n каталог" msgstr[1] "%n каталога" msgstr[2] "%n каталогов" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файла" msgstr[2] "%n файлов" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} и {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Закачка %n файла" msgstr[1] "Закачка %n файлов" msgstr[2] "Закачка %n файлов" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" это не правильное имя файла." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ваше хранилище заполнено, произведите очистку перед загрузкой новых файлов." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше хранилище почти заполнено ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Приложение для шифрования активно, но ваши ключи не инициализированы, пожалуйста, перелогиньтесь" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Закрытый ключ приложения шифрования недействителен. Обновите закрытый ключ в личных настройках, чтобы восстановить доступ к зашифрованным файлам." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Шифрование было отключено, но ваши файлы остались зашифрованными. Зайдите на страницу личных настроек для того, чтобы расшифровать их." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Идёт подготовка к скачиванию. Это может занять некоторое время, если файлы большого размера." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Имя" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Размер" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Дата изменения" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s не может быть переименован" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 379364d97a5..738a44e4a11 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -24,6 +24,14 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -291,99 +299,104 @@ msgstr "Пожалуйста, дважды просмотрите msgid "%s shared »%s« with you" msgstr "%s поделился »%s« с вами" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 8894a197136..0d1481475c4 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -62,15 +62,15 @@ msgstr "Письмо отправлено" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Шифрование" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -538,91 +538,111 @@ msgstr "Разрешить уведомление по почте" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Принудить клиентов подключаться к %s через шифрованное соединение." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Адрес сервера" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Порт" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Полномочия" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Журнал" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Уровень детализации журнала" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Больше" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Меньше" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Версия" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "දෝෂයක්" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "නම" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "වෙනස් කළ" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index cc3a48c0152..e7fbe2f7213 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index d276c9ecebe..1bcf2f4f2b6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "ගුප්ත කේතනය" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "සේවාදායකයේ ලිපිනය" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "තොට" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "වැඩි" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "අඩු" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,137 +173,129 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Zdieľať" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 4e039dc17ae..de9e07230ca 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index e88024cd09d..9d9d3a33b4b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Cieľový priečinok bol premiestnený alebo odstránený." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,137 +174,129 @@ msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." msgid "URL cannot be empty" msgstr "URL nemôže byť prázdna" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "V domovskom priečinku je názov \"Shared\" vyhradený názov súboru" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Nemožno vytvoriť súbor" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Nemožno vytvoriť priečinok" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Chyba pri načítavaní URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Zdieľať" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Chyba pri presúvaní súboru" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Chyba" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Prebieha" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Nemožno premenovať súbor" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Chyba pri mazaní súboru." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n priečinok" msgstr[1] "%n priečinky" msgstr[2] "%n priečinkov" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n súbor" msgstr[1] "%n súbory" msgstr[2] "%n súborov" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} a {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Nahrávam %n súbor" msgstr[1] "Nahrávam %n súbory" msgstr[2] "Nahrávam %n súborov" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" je neplatné meno súboru." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Vaše úložisko je plné. Súbory nemožno aktualizovať ani synchronizovať!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Vaše úložisko je takmer plné ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Aplikácia na šifrovanie je zapnutá, ale vaše kľúče nie sú inicializované. Odhláste sa a znovu sa prihláste." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Chybný súkromný kľúč na šifrovanie aplikácií. Zaktualizujte si heslo súkromného kľúča v svojom osobnom nastavení, aby ste znovu získali prístup k svojim zašifrovaným súborom." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifrovanie bolo zakázané, ale vaše súbory sú stále zašifrované. Prosím, choďte do osobného nastavenia pre dešifrovanie súborov." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Názov" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Veľkosť" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Upravené" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Názov priečinka je chybný. Použitie názvu 'Shared' nie je povolené." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s nemohol byť premenovaný" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 8b3d08256f6..92d4f5a9d56 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Prosím skontrolujte inštalačnú príručku." msgid "%s shared »%s« with you" msgstr "%s s vami zdieľa »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index f39c5f873eb..8373c69dd40 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -49,15 +49,15 @@ msgstr "Email odoslaný" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Mód odosielania" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Šifrovanie" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Autentifikačná metóda" @@ -525,91 +525,111 @@ msgstr "Povoliť odosielať upozornenia emailom" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vynúti pripájanie klientov k %s šifrovaným pripojením." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Pripojte sa k %s cez HTTPS pre povolenie alebo zakázanie vynútenia SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Email server" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Z adresy" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Adresa servera" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Prihlasovanie údaje" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP používateľské meno" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP heslo" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Odoslať email" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Záznam" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Viac" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Menej" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Verzia" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Neveljavno ime; znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Ciljna mapa je premaknjena ali izbrisana." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,59 +175,55 @@ msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošilja msgid "URL cannot be empty" msgstr "Polje naslova URL ne sme biti prazno" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "V domači mapi ni dovoljeno ustvariti mape z imenom 'Souporabe', saj je ime zadržano za javno mapo." - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Ni mogoče ustvariti datoteke" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Ni mogoče ustvariti mape" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Napaka pridobivanja naslova URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Souporaba" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Napaka premikanja datoteke" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Napaka" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Ni mogoče preimenovati datoteke" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Napaka brisanja datoteke." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapa" @@ -235,7 +231,7 @@ msgstr[1] "%n mapi" msgstr[2] "%n mape" msgstr[3] "%n map" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n datoteka" @@ -243,11 +239,11 @@ msgstr[1] "%n datoteki" msgstr[2] "%n datoteke" msgstr[3] "%n datotek" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} in {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Posodabljanje %n datoteke" @@ -255,60 +251,56 @@ msgstr[1] "Posodabljanje %n datotek" msgstr[2] "Posodabljanje %n datotek" msgstr[3] "Posodabljanje %n datotek" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" je neveljavno ime datoteke." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Shramba je povsem napolnjena. Datotek ni več mogoče posodabljati in usklajevati!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Prostor za shranjevanje je skoraj do konca zaseden ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Program za šifriranje je omogočen, vendar ni začet. Odjavite se in nato ponovno prijavite." -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ni ustreznega osebnega ključa za program za šifriranje. Posodobite osebni ključ za dostop do šifriranih datotek med nastavitvami." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Šifriranje je onemogočeno, datoteke pa so še vedno šifrirane. Odšifrirajte jih med nastavitvami." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, kadar je datoteka zelo velika." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Velikost" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Spremenjeno" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Neveljavno ime mape. Ime 'Souporaba' je zadržana za javno mapo." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s ni mogoče preimenovati" @@ -316,7 +308,7 @@ msgstr "%s ni mogoče preimenovati" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Pošiljanje (omejitev %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 46cd7f25c69..6e8ca0aa09c 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "Preverite navodila namestitve." msgid "%s shared »%s« with you" msgstr "%s je omogočil souporabo »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Nastavljanje souporabe %s je spodletelo, ker je uporabnik %s lastnik predmeta." + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ne obstaja." -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ni član nobene skupine, v kateri je tudi uporabnik %s." -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletela, ker je ima uporabnik %s predmet že v souporabi." -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletelo, ker je skupina %s ne obstaja." -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ni član skupine %s." -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Nastavljanje souporabe %s je spodletelo, ker souporaba preko povezave ni dovoljena." -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Vrsta souporabe %s za %s ni veljavna." -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Ozadnjega programa %s za souporabo ni mogoče najti" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Ozadnjega programa za souporabo za %s ni mogoče najti" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 08a73d58259..c422f3555d3 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -34,12 +34,12 @@ msgstr "preizkusi nastavitve elektronske pošte" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "Če ste prejeli to sporočilo, so nastavitve pravilne." #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "Prišlo je do napake med pošiljanjem sporočila na elektronski naslov. Spremeniti je treba nastavitve." #: admin/controller.php:99 msgid "Email sent" @@ -49,15 +49,15 @@ msgstr "Elektronska pošta je poslana" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Način pošiljanja" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Šifriranje" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Način overitve" @@ -445,18 +445,18 @@ msgstr "Periodično opravilo" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "Zadnje opravilo cron je bilo izvedeno ob %s." #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "Zadnje opravilo cron je bilo izvedeno ob %s. To je več kot uro nazaj. Nekaj je očitno narobe." #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "Opravilo Cron še ni zagnano!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" @@ -523,93 +523,113 @@ msgstr "Dovoli obvestila preko elektronske pošte" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti." + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:278 msgid "Security" msgstr "Varnost" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Vsili povezavo odjemalca z %s preko šifrirane povezave." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Za nastavljanje šifriranja SSL je treba vzpostaviti povezavo z mestom %s preko protokola HTTPS." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "Poštni strežnik" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Zahtevana je overitev" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Naslov strežnika" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Vrata" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Poverila" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "Uporabniško ime SMTP" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "Geslo SMTP" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Preizkus nastavitev elektronske pošte" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Pošlji elektronsko sporočilo" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Več" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Manj" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Različica" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Emër jo i vlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,134 +175,126 @@ msgstr "Skedari duke u ngarkuar. Largimi nga faqja do të anullojë ngarkimin" msgid "URL cannot be empty" msgstr "URL-i nuk mund të jetë bosh" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} është ekzistues " -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "I pamundur krijimi i kartelës" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Ndaj" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Fshi përfundimisht" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Riemëro" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Gabim lëvizjen dokumentave" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Gabim" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Në vijim" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dosje" msgstr[1] "%n dosje" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n skedar" msgstr[1] "%n skedarë" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} dhe {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Po ngarkoj %n skedar" msgstr[1] "Po ngarkoj %n skedarë" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Hapsira juaj e arkivimit është plot, skedarët nuk mund të përditësohen ose sinkronizohen!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Hapsira juaj e arkivimit është pothuajse në fund ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kodifikimi u çaktivizua por skedarët tuaj vazhdojnë të jenë të kodifikuar. Ju lutem shkoni tek parametrat personale për të dekodifikuar skedarët tuaj." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Shkarkimi juaj është duke u përgatitur. Kjo mund të kërkojë kohë nëse skedarët janë të mëdhenj." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Emri" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Madhësia" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Ndryshuar" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "Nuk është i mundur riemërtimi i %s" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index bd165498149..29db7acc77f 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." msgid "%s shared »%s« with you" msgstr "%s ndau »%s« me ju" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index 0f7ca7d0239..f2e9339df67 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Email-i u dërgua" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Siguria" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Detyro HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Porta" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Historik aktiviteti" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Niveli i Historikut" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Më tepër" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "M'pak" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Versioni" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,137 +173,129 @@ msgstr "Отпремање датотеке је у току. Ако сада н msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Дели" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Обриши за стално" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Грешка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше складиште је скоро па пуно ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Име" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Величина" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Измењено" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index fb962337e4e..49b85c54104 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Погледајте водиче за инсталациј msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 4691d1e387c..58fbbae97c5 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Порука је послата" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Шифровање" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Адреса сервера" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Порт" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Бележење" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Више" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Мање" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Верзија" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,137 +173,129 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Podeli" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Preimenij" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Greška" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Veličina" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Zadnja izmena" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 2cfe024582e..65c7d8036d9 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 312bf5473b5..db0d8ebbd60 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "Email poslat" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/su/lib.po b/l10n/su/lib.po index 4d3929c27cc..4a16c9c9115 100644 --- a/l10n/su/lib.po +++ b/l10n/su/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: su\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/su/settings.po b/l10n/su/settings.po index 3d504c44baa..88706c97e75 100644 --- a/l10n/su/settings.po +++ b/l10n/su/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Sundanese (http://www.transifex.com/projects/p/owncloud/language/su/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the , 2014 # Daniel Sandman , 2013 +# enoch85 , 2014 # Gunnar Norin , 2013 # Gustav Smedberg , 2013 # medialabs, 2013 @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 13:01+0000\n" +"Last-Translator: enoch85 \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" @@ -142,59 +143,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Inställningar" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Sparar..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n minut sedan" msgstr[1] "%n minuter sedan" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n timme sedan" msgstr[1] "%n timmar sedan" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "i dag" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "i går" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n dag sedan" msgstr[1] "%n dagar sedan" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "förra månaden" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n månad sedan" msgstr[1] "%n månader sedan" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "förra året" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "år sedan" @@ -621,7 +622,7 @@ msgid "" "just letting you know that %s shared %s with you.\n" "View it: %s\n" "\n" -msgstr "Hej där,⏎\n⏎\nville bara meddela dig att %s delade %s med dig.⏎\nTitta på den: %s⏎\n⏎\n" +msgstr "Hej där!,\n\nVi vill bara meddela att %s delade %s med dig.\nTitta på den här: %s\n\n" #: templates/altmail.php:4 templates/mail.php:17 #, php-format @@ -630,7 +631,7 @@ msgstr "Utdelningen kommer att upphöra %s." #: templates/altmail.php:7 templates/mail.php:20 msgid "Cheers!" -msgstr "Vi höres!" +msgstr "Ha de fint!" #: templates/installation.php:25 templates/installation.php:32 #: templates/installation.php:39 diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 445f27234af..83fada0113d 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/files.po @@ -6,6 +6,7 @@ # AsavarTzeth , 2014 # DanielMalmgren , 2013 # Daniel Sandman , 2013 +# enoch85 , 2014 # Gunnar Norin , 2013 # Gustav Smedberg , 2013 # medialabs, 2013 @@ -16,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -36,7 +37,7 @@ msgstr "Kunde inte flytta %s - Det finns redan en fil med detta namn" msgid "Could not move %s" msgstr "Kan inte flytta %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Filnamn kan inte vara tomt." @@ -45,18 +46,18 @@ msgstr "Filnamn kan inte vara tomt." msgid "\"%s\" is an invalid file name." msgstr "\"%s\" är ett ogiltigt filnamn." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Målmappen har flyttats eller tagits bort." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -182,134 +183,126 @@ msgstr "Filuppladdning pågår. Lämnar du sidan så avbryts uppladdningen." msgid "URL cannot be empty" msgstr "URL kan ej vara tomt" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "I hemma katalogen 'Delat' är ett reserverat filnamn" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Kunde ej skapa fil" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Kunde ej skapa katalog" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Fel vid hämtning av URL" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Dela" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Fel uppstod vid flyttning av fil" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Fel" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Kan ej byta filnamn" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Kunde inte ta bort filen." -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n mapp" msgstr[1] "%n mappar" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n fil" msgstr[1] "%n filer" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} och {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Laddar upp %n fil" msgstr[1] "Laddar upp %n filer" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" är ett ogiltligt filnamn." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ditt lagringsutrymme är fullt, filer kan inte längre uppdateras eller synkroniseras!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Krypteringsprogrammet är aktiverat men dina nycklar är inte initierade. Vänligen logga ut och in igen" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Ogiltig privat nyckel i krypteringsprogrammet. Vänligen uppdatera lösenordet till din privata nyckel under dina personliga inställningar för att återfå tillgång till dina krypterade filer." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Kryptering inaktiverades men dina filer är fortfarande krypterade. Vänligen gå till sidan för dina personliga inställningar för att dekryptera dina filer." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Storlek" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Ändrad" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s kunde inte namnändras" @@ -317,7 +310,7 @@ msgstr "%s kunde inte namnändras" #: lib/helper.php:14 templates/index.php:22 #, php-format msgid "Upload (max. %s)" -msgstr "" +msgstr "Ladda upp (max. %s)" #: templates/admin.php:4 msgid "File handling" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 6fc4c5c725a..b7858c13ef1 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -4,15 +4,16 @@ # # Translators: # AsavarTzeth , 2014 +# enoch85 , 2014 # henrikhjelm , 2014 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-13 01:54-0400\n" -"PO-Revision-Date: 2014-04-12 11:30+0000\n" -"Last-Translator: henrikhjelm \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:53+0000\n" +"Last-Translator: enoch85 \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" @@ -44,34 +45,34 @@ msgstr "Fel vid konfigurering av Google Drive" msgid "Saved" msgstr "Sparad" -#: lib/config.php:592 +#: lib/config.php:598 msgid "Note: " msgstr " OBS: " -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "och" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." -msgstr " OBS: cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det." +msgstr " OBS: cURL stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det." -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." -msgstr " OBS: Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör för att installera det." +msgstr " OBS: Den FTP-stöd i PHP inte är aktiverat eller installeras. Montering av %s är inte möjlig. Be din systemadministratör att installera det." -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" " ask your system administrator to install it." -msgstr " OBS: \"%s\" är inte installerat. Montering av %s är inte möjlig. Be din systemadministratör för att installera det." +msgstr " OBS: \"%s\" är inte installerat. Montering av %s är inte möjlig. Be din systemadministratör att installera det." #: templates/settings.php:2 msgid "External Storage" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index cb9a685d2a4..4612c74c01e 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -5,6 +5,7 @@ # Translators: # AsavarTzeth , 2014 # Daniel Sandman , 2013 +# enoch85 , 2014 # henrikhjelm , 2014 # medialabs, 2013 # kallemooo , 2013 @@ -14,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -24,6 +25,14 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -291,103 +300,108 @@ msgstr "Var god kontrollera installationsguiden." msgid "%s shared »%s« with you" msgstr "%s delade »%s« med dig" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "Delning %s misslyckades därför att användaren %s är den som äger objektet" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "Delning %s misslyckades därför att användaren %s inte existerar" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "Delning %s misslyckades därför att användaren %s inte är medlem i någon utav de grupper som %s är medlem i" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "Delning %s misslyckades därför att objektet redan är delat med %s" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "Delning %s misslyckades därför att gruppen %s inte existerar" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "Delning %s misslyckades därför att %s inte ingår i gruppen %s" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "Delning %s misslyckades därför att delning utav länkar inte är tillåtet" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "Delningstyp %s är inte giltig för %s" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "Misslyckades att sätta rättigheter för %s därför att rättigheterna överskrider de som är tillåtna för %s" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "Att sätta rättigheterna för %s misslyckades därför att objektet inte hittades" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Delningsgränssnittet %s måste implementera gränssnittet OCP\\Share_Backend" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Delningsgränssnittet %s hittades inte" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "Delningsgränssnittet för %s hittades inte" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "Delning %s misslyckades därför att användaren %s är den som delade objektet först" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "Delning %s misslyckades därför att rättigheterna överskrider de rättigheter som är tillåtna för %s" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "Delning %s misslyckades därför att vidaredelning inte är tillåten" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "Delning %s misslyckades därför att delningsgränsnittet för %s inte kunde hitta sin källa" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "Delning %s misslyckades därför att filen inte kunde hittas i filcachen" #: private/tags.php:193 #, php-format diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 99f3ae24b86..31f1d96bef9 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -5,6 +5,7 @@ # Translators: # AsavarTzeth , 2014 # Daniel Sandman , 2013 +# enoch85 , 2014 # Gunnar Norin , 2013 # Gustav Smedberg , 2013 # henrikhjelm , 2014 @@ -18,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -58,15 +59,15 @@ msgstr "E-post skickat" msgid "You need to set your user email before being able to send test emails." msgstr "Du behöver ställa in din användares e-postadress före du kan skicka test e-post." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Sändningsläge" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Kryptering" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Autentiseringsmetod" @@ -81,7 +82,7 @@ msgstr "Fel vid autentisering" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "Ditt fulla namn har ändrats" +msgstr "Hela ditt namn har ändrats" #: ajax/changedisplayname.php:34 msgid "Unable to change full name" @@ -97,7 +98,7 @@ msgstr "Kan inte lägga till grupp" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "Filer dekrypteras utan fel" +msgstr "Filerna dekrypterades utan fel" #: ajax/decryptall.php:33 msgid "" @@ -532,93 +533,113 @@ msgstr "Tillåt e-post notifikation" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "Tillåt användare att skicka mailnotifieringar för delade filer" + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "Tvingar klienterna att ansluta till %s via en krypterad anslutning." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-postserver" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Detta används för att skicka ut notifieringar." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Från adress" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Autentisering krävs" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Serveradress" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Inloggningsuppgifter" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP användarnamn" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP lösenord" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "Testa e-post inställninggar" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "Skicka e-post" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Logg" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Mer" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Mindre" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Version" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 8de71859915..0e5edf6897d 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 525ca027ce5..d18be24c39d 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "கோப்பு பதிவேற்றம் செயல்பா msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "பகிர்வு" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "வழு" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "பெயர்" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "அளவு" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index 0cff9cc46f5..334ff779193 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index fc3cdcea428..868be97f593 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "மறைக்குறியீடு" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "சேவையக முகவரி" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "துறை " -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "சான்று ஆவணங்கள்" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "పొరపాటు" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "పేరు" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 97177c36dc8..dd35ccc1187 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index aa6d2dc3483..ce65801a925 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "సేవకి చిరునామా" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 9098867f339..60883d08eda 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -28,7 +28,7 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "" @@ -37,18 +37,18 @@ msgstr "" msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different name." @@ -173,133 +173,125 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 7777b79c596..bcaf26ee2e5 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\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 4249671016e..ba188527376 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\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 1ceb58b2d12..0c99318f311 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\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 dc188cbf798..d41084e1333 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\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 3fbca2717bf..a83149715fb 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\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 142859181db..5085fc5108d 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,6 +18,14 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -285,99 +293,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s " "is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/templates/private.pot b/l10n/templates/private.pot index d9c628a1c54..a159a34d18f 100644 --- a/l10n/templates/private.pot +++ b/l10n/templates/private.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -277,99 +277,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: share/share.php:490 +#: share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: share/share.php:496 +#: share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: share/share.php:505 +#: share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s " "is a member of" msgstr "" -#: share/share.php:518 share/share.php:546 +#: share/share.php:551 share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: share/share.php:526 +#: share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: share/share.php:533 +#: share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: share/share.php:596 +#: share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: share/share.php:603 +#: share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: share/share.php:740 +#: share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: share/share.php:801 +#: share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: share/share.php:895 +#: share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: share/share.php:902 +#: share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: share/share.php:908 +#: share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: share/share.php:1325 +#: share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: share/share.php:1334 +#: share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: share/share.php:1349 +#: share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: share/share.php:1361 +#: share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: share/share.php:1375 +#: share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index ed8bfbf1efa..134ff39cfde 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -522,90 +522,110 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index ae637283fc6..8e69c2581c5 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 6.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\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/files.po b/l10n/th_TH/files.po index acd5249bc53..a877abec6d1 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -27,7 +27,7 @@ msgstr "ไม่สามารถย้าย %s ได้ - ไฟล์ท msgid "Could not move %s" msgstr "ไม่สามารถย้าย %s ได้" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "ชื่อไฟล์ไม่สามารถเว้นว่างได้" @@ -36,18 +36,18 @@ msgstr "ชื่อไฟล์ไม่สามารถเว้นว่า msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "การอัพโหลดไฟล์กำลังอยู่ใ msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "แชร์" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "พื้นที่จัดเก็บข้อมูลของคุณเต็มแล้ว ไม่สามารถอัพเดทหรือผสานไฟล์ต่างๆได้อีกต่อไป" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "ชื่อ" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "ขนาด" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "แก้ไขแล้ว" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index d11c284a776..368b7226e72 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 051c00d0c74..5aefd0e5da0 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "ส่งอีเมล์แล้ว" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "การเข้ารหัส" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "ที่อยู่เซิร์ฟเวอร์" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "พอร์ต" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "ข้อมูลส่วนตัวสำหรับเข้าระบบ" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "มาก" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "น้อย" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgstr "%s taşınamadı. Bu isimde dosya zaten mevcut" msgid "Could not move %s" msgstr "%s taşınamadı" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr "Dosya adı boş olamaz." @@ -41,18 +41,18 @@ msgstr "Dosya adı boş olamaz." msgid "\"%s\" is an invalid file name." msgstr "'%s' geçersiz bir dosya adı." -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "Hedef klasör taşındı veya silindi." -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -178,134 +178,126 @@ msgstr "Dosya yükleme işlemi sürüyor. Şimdi sayfadan ayrılırsanız işlem msgid "URL cannot be empty" msgstr "URL boş olamaz" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "Ev klasöründeki 'Paylaşılan', ayrılmış bir dosya adıdır" - -#: js/file-upload.js:561 js/filelist.js:586 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Dosya oluşturulamadı" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Klasör oluşturulamadı" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "Adres getirilirken hata" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Paylaş" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Dosya taşıma hatası" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Hata" -#: js/filelist.js:251 js/filelist.js:1130 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:613 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Dosya adlandırılamadı" -#: js/filelist.js:776 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Dosya silinirken hata." -#: js/filelist.js:801 js/filelist.js:877 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n dizin" msgstr[1] "%n dizin" -#: js/filelist.js:802 js/filelist.js:878 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n dosya" msgstr[1] "%n dosya" -#: js/filelist.js:809 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} ve {files}" -#: js/filelist.js:1038 js/filelist.js:1077 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n dosya yükleniyor" msgstr[1] "%n dosya yükleniyor" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "\"{name}\" geçersiz bir dosya adı." -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Depolama alanınız dolu, artık dosyalar güncellenmeyecek veya eşitlenmeyecek." -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Şifreleme Uygulaması etkin ancak anahtarlarınız başlatılmamış. Lütfen oturumu kapatıp yeniden açın" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "Şifreleme Uygulaması için geçersiz özel anahtar. Lütfen şifreli dosyalarınıza erişimi tekrar kazanabilmek için kişisel ayarlarınızdan özel anahtar parolanızı güncelleyin." -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Şifreleme işlemi durduruldu ancak dosyalarınız şifreli. Dosyalarınızın şifresini kaldırmak için lütfen kişisel ayarlar kısmına geçin." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "İsim" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Boyut" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Değiştirilme" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "Geçersiz klasör adı. 'Shared' ismi ayrılmıştır." - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s yeniden adlandırılamadı" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index c70944abd19..a8c8a4c4eba 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,6 +21,14 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -288,103 +296,108 @@ msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." msgid "%s shared »%s« with you" msgstr "%s sizinle »%s« paylaşımında bulundu" -#: private/share/share.php:490 +#: private/share/share.php:498 #, php-format -msgid "Sharing %s failed, because the user %s is the item owner" +msgid "Sharing %s failed, because the file does not exist" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:523 +#, php-format +msgid "Sharing %s failed, because the user %s is the item owner" +msgstr "%s paylaşımı, %s öge sahibi olduğundan başarısız oldu" + +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" -msgstr "" +msgstr "%s paylaşımı, %s kullanıcısı mevcut olmadığından başarısız oldu" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" -msgstr "" +msgstr "%s paylaşımı, %s kullanıcısının %s üyeliklerinden birine sahip olmadığından başarısız oldu" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" -msgstr "" +msgstr "%s paylaşımı, %s ile zaten paylaşıldığından dolayı başarısız oldu" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" -msgstr "" +msgstr "%s paylaşımı, %s grubu mevcut olmadığından başarısız oldu" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" -msgstr "" +msgstr "%s paylaşımı, %s kullanıcısı %s grup üyesi olmadığından başarısız oldu" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" -msgstr "" +msgstr "%s paylaşımı, bağlantılar ile paylaşım izin verilmediğinden başarısız oldu" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" -msgstr "" +msgstr "%s paylaşım türü %s için geçerli değil" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" -msgstr "" +msgstr "%s için izinler, izinler %s için verilen izinleri aştığından dolayı ayarlanamadı" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" -msgstr "" +msgstr "%s için izinler öge bulunamadığından ayarlanamadı" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" -msgstr "" +msgstr "Paylaşma arka ucu %s OCP\\Share_Backend arayüzünü desteklemeli" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" -msgstr "" +msgstr "Paylaşım arka ucu %s bulunamadı" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" -msgstr "" +msgstr "%s için paylaşım arka ucu bulunamadı" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" -msgstr "" +msgstr "%s paylaşımı, %s kullanıcısı özgün paylaşan kişi olduğundan başarısız oldu" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" -msgstr "" +msgstr "%s paylaşımı, izinler %s için verilen izinleri aştığından dolayı başarısız oldu" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" -msgstr "" +msgstr "%s paylaşımı, tekrar paylaşımın izin verilmemesinden dolayı başarısız oldu" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" -msgstr "" +msgstr "%s paylaşımı, %s için arka ucun kaynağını bulamamasından dolayı başarısız oldu" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" -msgstr "" +msgstr "%s paylaşımı, dosyanın dosya önbelleğinde bulunamamasınndan dolayı başarısız oldu" #: private/tags.php:193 #, php-format diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 2b6aae69911..738ac072250 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 11:10+0000\n" -"Last-Translator: volkangezer \n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,15 +51,15 @@ msgstr "E-posta gönderildi" msgid "You need to set your user email before being able to send test emails." msgstr "Sınama e-postaları göndermeden önce kullanıcı e-postasını ayarlamanız gerekiyor." -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "Gönderme kipi" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Şifreleme" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "Kimlik doğrulama yöntemi" @@ -527,91 +527,111 @@ msgstr "Posta bilgilendirmesine izin ver" msgid "Allow users to send mail notification for shared files" msgstr "Paylaşılmış dosyalar için kullanıcıların posta bildirimi göndermesine izin ver" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "İstemcileri %s'a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen %s'a HTTPS ile bağlanın." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "E-Posta Sunucusu" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "Bu, bildirimler gönderilirken kullanılır." -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "Kimden adresi" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "Kimlik doğrulama gerekli" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Sunucu adresi" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Port" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Kimlik Bilgileri" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "SMTP Kullanıcı Adı" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "SMTP Parolası" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "E-posta ayarlarını sına" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "E-posta gönder" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Günlük" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Az" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/tzm/lib.po b/l10n/tzm/lib.po index d90cda5f055..54a93055d44 100644 --- a/l10n/tzm/lib.po +++ b/l10n/tzm/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: tzm\n" "Plural-Forms: nplurals=2; plural=(n == 0 || n == 1 || (n > 10 && n < 100) ? 0 : 1;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/tzm/settings.po b/l10n/tzm/settings.po index 87462e65a29..73319d7bf58 100644 --- a/l10n/tzm/settings.po +++ b/l10n/tzm/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Central Atlas Tamazight (http://www.transifex.com/projects/p/owncloud/language/tzm/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "ھۆججەت يۈكلەش مەشغۇلاتى ئېلىپ بېرىلىۋا msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} مەۋجۇت" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "ھەمبەھىر" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "مەڭگۈلۈك ئۆچۈر" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "خاتالىق" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "ئاتى" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "چوڭلۇقى" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "ئۆزگەرتكەن" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 3409a80517e..787145dd804 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index af673c0410d..32bf6b17ebf 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uighur (http://www.transifex.com/projects/p/owncloud/language/ug/)\n" "MIME-Version: 1.0\n" @@ -48,15 +48,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "شىفىرلاش" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "مۇلازىمېتىر ئادرىسى" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "ئېغىز" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "ئاز" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the , 2014 # volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 16:30+0000\n" +"Last-Translator: azdk94 \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,7 +21,7 @@ msgstr "" #: ajax/share.php:87 msgid "Expiration date is in the past." -msgstr "" +msgstr "Термін дії минув." #: ajax/share.php:119 ajax/share.php:161 #, php-format @@ -135,63 +136,63 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:489 +#: js/js.js:483 msgid "Settings" msgstr "Налаштування" -#: js/js.js:589 +#: js/js.js:583 msgid "Saving..." msgstr "Зберігаю..." -#: js/js.js:1246 +#: js/js.js:1240 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:1247 +#: js/js.js:1241 msgid "%n minute ago" msgid_plural "%n minutes ago" msgstr[0] "%n хвилину тому" msgstr[1] "%n хвилини тому" msgstr[2] "%n хвилин тому" -#: js/js.js:1248 +#: js/js.js:1242 msgid "%n hour ago" msgid_plural "%n hours ago" msgstr[0] "%n годину тому" msgstr[1] "%n години тому" msgstr[2] "%n годин тому" -#: js/js.js:1249 +#: js/js.js:1243 msgid "today" msgstr "сьогодні" -#: js/js.js:1250 +#: js/js.js:1244 msgid "yesterday" msgstr "вчора" -#: js/js.js:1251 +#: js/js.js:1245 msgid "%n day ago" msgid_plural "%n days ago" msgstr[0] "%n день тому" msgstr[1] "%n дні тому" msgstr[2] "%n днів тому" -#: js/js.js:1252 +#: js/js.js:1246 msgid "last month" msgstr "минулого місяця" -#: js/js.js:1253 +#: js/js.js:1247 msgid "%n month ago" msgid_plural "%n months ago" msgstr[0] "%n місяць тому" msgstr[1] "%n місяці тому" msgstr[2] "%n місяців тому" -#: js/js.js:1254 +#: js/js.js:1248 msgid "last year" msgstr "минулого року" -#: js/js.js:1255 +#: js/js.js:1249 msgid "years ago" msgstr "роки тому" @@ -270,11 +271,11 @@ msgstr "Помилка при завантаженні файлу існуючо #: js/setup.js:84 msgid "Very weak password" -msgstr "" +msgstr "Дуже слабкий пароль" #: js/setup.js:85 msgid "Weak password" -msgstr "" +msgstr "Слабкий пароль" #: js/setup.js:86 msgid "So-so password" @@ -282,11 +283,11 @@ msgstr "" #: js/setup.js:87 msgid "Good password" -msgstr "" +msgstr "Добрий пароль" #: js/setup.js:88 msgid "Strong password" -msgstr "" +msgstr "Надійний пароль" #: js/share.js:51 js/share.js:66 js/share.js:106 msgid "Shared" @@ -548,7 +549,7 @@ msgstr "Скинути пароль" msgid "" "Mac OS X is not supported and %s will not work properly on this platform. " "Use it at your own risk! " -msgstr "" +msgstr "Mac OS X не підтримується і %s не буде коректно працювати на цій платформі. Випробовуєте на свій риск!" #: setup/controller.php:144 msgid "" @@ -776,7 +777,7 @@ msgstr "Альтернативні Логіни" msgid "" "Hey there,

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

" -msgstr "" +msgstr "Агов,

просто щоб ви знали, що %s поділився »%s« з вами.
Подивіться!

" #: templates/singleuser.user.php:3 msgid "This ownCloud instance is currently in single user mode." diff --git a/l10n/uk/files.po b/l10n/uk/files.po index cbb9d10fe2e..e1581c7f5e8 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -28,7 +28,7 @@ msgstr "Не вдалося перемістити %s - Файл з таким msgid "Could not move %s" msgstr "Не вдалося перемістити %s" -#: ajax/newfile.php:58 js/files.js:98 +#: ajax/newfile.php:58 js/files.js:96 msgid "File name cannot be empty." msgstr " Ім'я файлу не може бути порожнім." @@ -37,18 +37,18 @@ msgstr " Ім'я файлу не може бути порожнім." msgid "\"%s\" is an invalid file name." msgstr "" -#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:105 +#: ajax/newfile.php:69 ajax/newfolder.php:28 js/files.js:103 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -174,137 +174,129 @@ msgstr "Виконується завантаження файлу. Закрит msgid "URL cannot be empty" msgstr "URL не може бути порожнім" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Не вдалося створити файл" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Не вдалося створити теку" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Поділитися" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Помилка переміщення файлу" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Помилка" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Неможливо перейменувати файл" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n тека" msgstr[1] "%n тека" msgstr[2] "%n теки" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n файл" msgstr[1] "%n файлів" msgstr[2] "%n файли" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Ваше сховище переповнене, файли більше не можуть бути оновлені або синхронізовані !" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Ваше сховище майже повне ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Ім'я" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Розмір" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Змінено" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s не може бути перейменований" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 598c9e7f493..0641a0817fc 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "Будь ласка, перевірте інструкці msgid "%s shared »%s« with you" msgstr "%s розподілено »%s« з тобою" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 481bf1bd976..5f23c4f1621 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Ел. пошта надіслана" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Шифрування" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -232,11 +232,11 @@ msgstr "" #: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "Дуже слабкий пароль" #: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "Слабкий пароль" #: js/personal.js:276 msgid "So-so password" @@ -244,11 +244,11 @@ msgstr "" #: js/personal.js:277 msgid "Good password" -msgstr "" +msgstr "Добрий пароль" #: js/personal.js:278 msgid "Strong password" -msgstr "" +msgstr "Надійний пароль" #: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "Безпека" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Адреса сервера" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Порт" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Облікові дані" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Протокол" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "Більше" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "Менше" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Версія" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ur/lib.po b/l10n/ur/lib.po index adb951f6986..60ecd96b50d 100644 --- a/l10n/ur/lib.po +++ b/l10n/ur/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ur/settings.po b/l10n/ur/settings.po index f346523b7a6..227969e3adc 100644 --- a/l10n/ur/settings.po +++ b/l10n/ur/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Urdu (http://www.transifex.com/projects/p/owncloud/language/ur/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,134 +173,126 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "ایرر" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" msgstr[1] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" msgstr[1] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 75e40964d46..f8a8afab41b 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index a365ceecd66..5174cf78acd 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/uz/lib.po b/l10n/uz/lib.po index e8d5252faf3..edb77f72018 100644 --- a/l10n/uz/lib.po +++ b/l10n/uz/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -17,6 +17,14 @@ msgstr "" "Language: uz\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/uz/settings.po b/l10n/uz/settings.po index a63bd15c83b..80247d71401 100644 --- a/l10n/uz/settings.po +++ b/l10n/uz/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+0000\n" "Last-Translator: I Robot\n" "Language-Team: Uzbek (http://www.transifex.com/projects/p/owncloud/language/uz/)\n" "MIME-Version: 1.0\n" @@ -47,15 +47,15 @@ msgstr "" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng." #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,131 +177,123 @@ msgstr "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi t msgid "URL cannot be empty" msgstr "URL không thể để trống" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "Không thể tạo file" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "Không thể tạo thư mục" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "Chia sẻ" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "Lỗi di chuyển tập tin" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "Lỗi" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "Đang chờ" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "Không thể đổi tên file" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "Lỗi xóa file," -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n thư mục" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n tập tin" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} và {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "Đang tải lên %n tập tin" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "Your storage is full, files can not be updated or synced anymore!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "Your storage is almost full ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "Ứng dụng mã hóa đã được kích hoạt nhưng bạn chưa khởi tạo khóa. Vui lòng đăng xuất ra và đăng nhập lại" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "Mã hóa đã bị vô hiệu nhưng những tập tin của bạn vẫn được mã hóa. Vui lòng vào phần thiết lập cá nhân để giải mã chúng." -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "Tên" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "Thay đổi" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s không thể đổi tên" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index b21af741c52..aa1cfdeecad 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "%s đã chia sẻ »%s« với bạn" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index 2b090bd48a1..a96f09c1789 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -48,15 +48,15 @@ msgstr "Email đã được gửi" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "Mã hóa" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -524,91 +524,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "Địa chỉ máy chủ" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "Cổng" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "Giấy chứng nhận" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "Log" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "hơn" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "ít" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -177,131 +177,123 @@ msgstr "文件正在上传中。现在离开此页会导致上传动作被取消 msgid "URL cannot be empty" msgstr "URL不能为空" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "主目录里 'Shared' 是系统预留目录名" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "不能创建文件" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "不能创建文件夹" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "获取URL出错" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "分享" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "重命名" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "移动文件错误" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "错误" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "等待" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "不能重命名文件" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "删除文件出错。" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 文件夹" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n个文件" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "上传 %n 个文件" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "您的存储空间已满,文件将无法更新或同步!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的存储空间即将用完 ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "加密应用被启用了,但是你的加密密钥没有初始化,请重新登出登录系统一次。" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "无效的私有密钥。请到您的个人配置里去更新私有密钥,来恢复对加密文件的访问。" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "加密是被禁用的,但是您的文件还是被加密了。请到您的个人配置里设置文件加密选项。" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "名称" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "大小" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "修改日期" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "无效的文件夹名。”Shared“ 是 Owncloud 预留的文件夹" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "%s 不能被重命名" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 0b53e0ef257..47aa49ad551 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -22,6 +22,14 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -289,99 +297,104 @@ msgstr "请认真检查安装指南." msgid "%s shared »%s« with you" msgstr "%s 向您分享了 »%s«" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 38db6ba96f8..370c5239693 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -54,15 +54,15 @@ msgstr "邮件已发送" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "加密" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -530,91 +530,111 @@ msgstr "允许邮件通知" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "安全" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "强制客户端通过加密连接连接到%s。" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "请经由HTTPS连接到这个%s 实例来启用或禁用强制SSL." -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "服务器地址" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "端口" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "凭证" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "日志" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "更多" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "更少" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "版本" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -173,131 +173,123 @@ msgstr "" msgid "URL cannot be empty" msgstr "" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "分享" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "錯誤" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 298b7559192..19ef614f592 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -17,6 +17,14 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -284,99 +292,104 @@ msgstr "" msgid "%s shared »%s« with you" msgstr "" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 7021c16fcae..2f764482640 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -47,15 +47,15 @@ msgstr "郵件已傳" msgid "You need to set your user email before being able to send test emails." msgstr "" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" msgstr "" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "加密" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" msgstr "" @@ -523,91 +523,111 @@ msgstr "" msgid "Allow users to send mail notification for shared files" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" +msgstr "" + +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" msgstr "" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." msgstr "" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" msgstr "" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" msgstr "" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "連接埠" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" msgstr "" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" msgstr "" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" msgstr "" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" msgstr "" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the ', ':', '\"', '|', '?' and '*' are not " "allowed." msgstr "檔名不合法,不允許 \\ / < > : \" | ? * 字元" #: ajax/newfile.php:76 ajax/newfolder.php:35 ajax/upload.php:155 -#: lib/app.php:65 +#: lib/app.php:60 msgid "The target folder has been moved or deleted." msgstr "" -#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:74 +#: ajax/newfile.php:88 ajax/newfolder.php:47 lib/app.php:69 #, php-format msgid "" "The name %s is already used in the folder %s. Please choose a different " @@ -175,131 +175,123 @@ msgstr "檔案上傳中,離開此頁面將會取消上傳。" msgid "URL cannot be empty" msgstr "URL 不能留空" -#: js/file-upload.js:559 -msgid "In the home folder 'Shared' is a reserved filename" -msgstr "在家目錄中不能使用「共享」作為檔名" - -#: js/file-upload.js:561 js/filelist.js:585 +#: js/file-upload.js:559 js/filelist.js:597 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/file-upload.js:613 +#: js/file-upload.js:611 msgid "Could not create file" msgstr "無法建立檔案" -#: js/file-upload.js:626 +#: js/file-upload.js:624 msgid "Could not create folder" msgstr "無法建立資料夾" -#: js/file-upload.js:666 +#: js/file-upload.js:664 msgid "Error fetching URL" msgstr "" -#: js/fileactions.js:164 +#: js/fileactions.js:160 msgid "Share" msgstr "分享" -#: js/fileactions.js:177 +#: js/fileactions.js:173 msgid "Delete permanently" msgstr "永久刪除" -#: js/fileactions.js:238 +#: js/fileactions.js:234 msgid "Rename" msgstr "重新命名" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error moving file" msgstr "移動檔案失敗" -#: js/filelist.js:102 js/files.js:552 +#: js/filelist.js:102 js/files.js:550 msgid "Error" msgstr "錯誤" -#: js/filelist.js:251 js/filelist.js:1129 +#: js/filelist.js:258 js/filelist.js:1141 msgid "Pending" msgstr "等候中" -#: js/filelist.js:612 +#: js/filelist.js:624 msgid "Could not rename file" msgstr "無法重新命名" -#: js/filelist.js:775 +#: js/filelist.js:787 msgid "Error deleting file." msgstr "" -#: js/filelist.js:800 js/filelist.js:876 js/files.js:589 +#: js/filelist.js:812 js/filelist.js:888 js/files.js:587 msgid "%n folder" msgid_plural "%n folders" msgstr[0] "%n 個資料夾" -#: js/filelist.js:801 js/filelist.js:877 js/files.js:595 +#: js/filelist.js:813 js/filelist.js:889 js/files.js:593 msgid "%n file" msgid_plural "%n files" msgstr[0] "%n 個檔案" -#: js/filelist.js:808 +#: js/filelist.js:820 msgid "{dirs} and {files}" msgstr "{dirs} 和 {files}" -#: js/filelist.js:1037 js/filelist.js:1076 +#: js/filelist.js:1049 js/filelist.js:1088 msgid "Uploading %n file" msgid_plural "Uploading %n files" msgstr[0] "%n 個檔案正在上傳" -#: js/files.js:96 +#: js/files.js:94 msgid "\"{name}\" is an invalid file name." msgstr "" -#: js/files.js:117 +#: js/files.js:115 msgid "Your storage is full, files can not be updated or synced anymore!" msgstr "您的儲存空間已滿,沒有辦法再更新或是同步檔案!" -#: js/files.js:121 +#: js/files.js:119 msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "您的儲存空間快要滿了 ({usedSpacePercent}%)" -#: js/files.js:134 +#: js/files.js:132 msgid "" "Encryption App is enabled but your keys are not initialized, please log-out " "and log-in again" msgstr "檔案加密已啓用,但是您的金鑰尚未初始化,請重新登入一次" -#: js/files.js:138 +#: js/files.js:136 msgid "" "Invalid private key for Encryption App. Please update your private key " "password in your personal settings to recover access to your encrypted " "files." msgstr "無效的檔案加密私鑰,請在個人設定中更新您的私鑰密語以存取加密的檔案。" -#: js/files.js:142 +#: js/files.js:140 msgid "" "Encryption was disabled but your files are still encrypted. Please go to " "your personal settings to decrypt your files." msgstr "加密已經被停用,但是您的舊檔案還是處於已加密的狀態,請前往個人設定以解密這些檔案。" -#: js/files.js:331 +#: js/files.js:329 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" -#: js/files.js:570 templates/index.php:67 +#: js/files.js:568 templates/index.php:67 msgid "Name" msgstr "名稱" -#: js/files.js:571 templates/index.php:79 +#: js/files.js:569 templates/index.php:79 msgid "Size" msgstr "大小" -#: js/files.js:572 templates/index.php:81 +#: js/files.js:570 templates/index.php:81 msgid "Modified" msgstr "修改時間" -#: lib/app.php:60 -msgid "Invalid folder name. Usage of 'Shared' is reserved." -msgstr "" - -#: lib/app.php:93 +#: lib/app.php:86 #, php-format msgid "%s could not be renamed" msgstr "無法重新命名 %s" diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 7ce86652c81..06803008ac1 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# akong , 2013 +# akong , 2013-2014 # pellaeon , 2013 # Flymok , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-03-11 01:54-0400\n" -"PO-Revision-Date: 2014-03-11 05:55+0000\n" -"Last-Translator: I Robot\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:31+0000\n" +"Last-Translator: akong \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -100,11 +100,11 @@ msgstr "以下的使用者無法設定加密:" #: js/detect-migration.js:21 msgid "Initial encryption started... This can take some time. Please wait." -msgstr "" +msgstr "加密初始已啟用...這個需要一些時間。請稍等。" #: js/detect-migration.js:25 msgid "Initial encryption running... Please try again later." -msgstr "" +msgstr "加密初始執行中...請晚點再試。" #: templates/invalid_private_key.php:8 msgid "Go directly to your " @@ -114,91 +114,91 @@ msgstr "直接到您的" msgid "personal settings" msgstr "個人設定" -#: templates/settings-admin.php:4 templates/settings-personal.php:3 +#: templates/settings-admin.php:2 templates/settings-personal.php:2 msgid "Encryption" msgstr "加密" -#: templates/settings-admin.php:7 +#: templates/settings-admin.php:5 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" msgstr "啟用還原金鑰 (因忘記密碼仍允許還原使用者檔案):" -#: templates/settings-admin.php:11 +#: templates/settings-admin.php:9 msgid "Recovery key password" msgstr "還原金鑰密碼" -#: templates/settings-admin.php:14 +#: templates/settings-admin.php:12 msgid "Repeat Recovery key password" msgstr "再輸入還原金鑰密碼一次" -#: templates/settings-admin.php:21 templates/settings-personal.php:51 +#: templates/settings-admin.php:19 templates/settings-personal.php:50 msgid "Enabled" msgstr "已啓用" -#: templates/settings-admin.php:29 templates/settings-personal.php:59 +#: templates/settings-admin.php:27 templates/settings-personal.php:58 msgid "Disabled" msgstr "已停用" -#: templates/settings-admin.php:34 +#: templates/settings-admin.php:32 msgid "Change recovery key password:" msgstr "變更還原金鑰密碼:" -#: templates/settings-admin.php:40 +#: templates/settings-admin.php:38 msgid "Old Recovery key password" msgstr "舊的還原金鑰密碼" -#: templates/settings-admin.php:47 +#: templates/settings-admin.php:45 msgid "New Recovery key password" msgstr "新的還原金鑰密碼" -#: templates/settings-admin.php:53 +#: templates/settings-admin.php:51 msgid "Repeat New Recovery key password" msgstr "再輸入新的還原金鑰密碼一次" -#: templates/settings-admin.php:58 +#: templates/settings-admin.php:56 msgid "Change Password" msgstr "變更密碼" -#: templates/settings-personal.php:9 +#: templates/settings-personal.php:8 msgid "Your private key password no longer match your log-in password:" msgstr "您的私人金鑰密碼不符合您的登入密碼:" -#: templates/settings-personal.php:12 +#: templates/settings-personal.php:11 msgid "Set your old private key password to your current log-in password." msgstr "設定您的舊私人金鑰密碼到您現在的登入密碼。" -#: templates/settings-personal.php:14 +#: templates/settings-personal.php:13 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." msgstr "如果您忘記舊密碼,可以請求管理員協助取回檔案。" -#: templates/settings-personal.php:22 +#: templates/settings-personal.php:21 msgid "Old log-in password" msgstr "舊登入密碼" -#: templates/settings-personal.php:28 +#: templates/settings-personal.php:27 msgid "Current log-in password" msgstr "目前的登入密碼" -#: templates/settings-personal.php:33 +#: templates/settings-personal.php:32 msgid "Update Private Key Password" msgstr "更新私人金鑰密碼" -#: templates/settings-personal.php:42 +#: templates/settings-personal.php:41 msgid "Enable password recovery:" msgstr "啟用密碼還原:" -#: templates/settings-personal.php:44 +#: templates/settings-personal.php:43 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" msgstr "啟用這個選項將會允許您因忘記密碼但需要存取您的加密檔案" -#: templates/settings-personal.php:60 +#: templates/settings-personal.php:59 msgid "File recovery settings updated" msgstr "檔案還原設定已更新" -#: templates/settings-personal.php:61 +#: templates/settings-personal.php:60 msgid "Could not update file recovery" msgstr "無法更新檔案還原設定" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 10fa76b3d61..415b7d0fdf6 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: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-09 01:55-0400\n" -"PO-Revision-Date: 2014-04-09 05:55+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-24 12:53+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" @@ -40,31 +40,31 @@ msgstr "設定 Google Drive 儲存時發生錯誤" #: js/settings.js:318 js/settings.js:325 msgid "Saved" -msgstr "" +msgstr "已儲存" -#: lib/config.php:592 +#: lib/config.php:598 msgid "Note: " msgstr "" -#: lib/config.php:602 +#: lib/config.php:608 msgid " and " msgstr "" -#: lib/config.php:624 +#: lib/config.php:630 #, php-format msgid "" "Note: The cURL support in PHP is not enabled or installed. Mounting " "of %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:626 +#: lib/config.php:632 #, php-format msgid "" "Note: The FTP support in PHP is not enabled or installed. Mounting of" " %s is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:628 +#: lib/config.php:634 #, php-format msgid "" "Note: \"%s\" is not installed. Mounting of %s is not possible. Please" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 8823dee83c3..5d7d0ffea28 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-24 01:54-0400\n" -"PO-Revision-Date: 2014-04-24 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -19,6 +19,14 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" +#: base.php:723 +msgid "You are accessing the server from an untrusted domain." +msgstr "" + +#: base.php:724 +msgid "Please contact your administrator" +msgstr "" + #: private/app.php:236 #, php-format msgid "" @@ -286,99 +294,104 @@ msgstr "請參考安裝指南。" msgid "%s shared »%s« with you" msgstr "%s 與您分享了 %s" -#: private/share/share.php:490 +#: private/share/share.php:498 +#, php-format +msgid "Sharing %s failed, because the file does not exist" +msgstr "" + +#: private/share/share.php:523 #, php-format msgid "Sharing %s failed, because the user %s is the item owner" msgstr "" -#: private/share/share.php:496 +#: private/share/share.php:529 #, php-format msgid "Sharing %s failed, because the user %s does not exist" msgstr "" -#: private/share/share.php:505 +#: private/share/share.php:538 #, php-format msgid "" "Sharing %s failed, because the user %s is not a member of any groups that %s" " is a member of" msgstr "" -#: private/share/share.php:518 private/share/share.php:546 +#: private/share/share.php:551 private/share/share.php:579 #, php-format msgid "Sharing %s failed, because this item is already shared with %s" msgstr "" -#: private/share/share.php:526 +#: private/share/share.php:559 #, php-format msgid "Sharing %s failed, because the group %s does not exist" msgstr "" -#: private/share/share.php:533 +#: private/share/share.php:566 #, php-format msgid "Sharing %s failed, because %s is not a member of the group %s" msgstr "" -#: private/share/share.php:596 +#: private/share/share.php:629 #, php-format msgid "Sharing %s failed, because sharing with links is not allowed" msgstr "" -#: private/share/share.php:603 +#: private/share/share.php:636 #, php-format msgid "Share type %s is not valid for %s" msgstr "" -#: private/share/share.php:740 +#: private/share/share.php:773 #, php-format msgid "" "Setting permissions for %s failed, because the permissions exceed " "permissions granted to %s" msgstr "" -#: private/share/share.php:801 +#: private/share/share.php:834 #, php-format msgid "Setting permissions for %s failed, because the item was not found" msgstr "" -#: private/share/share.php:895 +#: private/share/share.php:940 #, php-format msgid "Sharing backend %s must implement the interface OCP\\Share_Backend" msgstr "" -#: private/share/share.php:902 +#: private/share/share.php:947 #, php-format msgid "Sharing backend %s not found" msgstr "" -#: private/share/share.php:908 +#: private/share/share.php:953 #, php-format msgid "Sharing backend for %s not found" msgstr "" -#: private/share/share.php:1325 +#: private/share/share.php:1367 #, php-format msgid "Sharing %s failed, because the user %s is the original sharer" msgstr "" -#: private/share/share.php:1334 +#: private/share/share.php:1376 #, php-format msgid "" "Sharing %s failed, because the permissions exceed permissions granted to %s" msgstr "" -#: private/share/share.php:1349 +#: private/share/share.php:1391 #, php-format msgid "Sharing %s failed, because resharing is not allowed" msgstr "" -#: private/share/share.php:1361 +#: private/share/share.php:1403 #, php-format msgid "" "Sharing %s failed, because the sharing backend for %s could not find its " "source" msgstr "" -#: private/share/share.php:1375 +#: private/share/share.php:1417 #, php-format msgid "" "Sharing %s failed, because the file could not be found in the file cache" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index d67101ebc53..4b9019fdf62 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# akong , 2014 # pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2014-04-23 01:54-0400\n" -"PO-Revision-Date: 2014-04-23 05:54+0000\n" +"POT-Creation-Date: 2014-04-25 01:54-0400\n" +"PO-Revision-Date: 2014-04-25 05:54+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" @@ -21,24 +22,24 @@ msgstr "" #: admin/controller.php:66 #, php-format msgid "Invalid value supplied for %s" -msgstr "" +msgstr "無效的提供值 %s" #: admin/controller.php:73 msgid "Saved" -msgstr "" +msgstr "已儲存" #: admin/controller.php:90 msgid "test email settings" -msgstr "" +msgstr "測試郵件設定" #: admin/controller.php:91 msgid "If you received this email, the settings seem to be correct." -msgstr "" +msgstr "假如您收到這個郵件,此設定看起來是正確的。" #: admin/controller.php:94 msgid "" "A problem occurred while sending the e-mail. Please revisit your settings." -msgstr "" +msgstr "當寄出郵件時發生問題。請重新檢視您的設定。" #: admin/controller.php:99 msgid "Email sent" @@ -46,19 +47,19 @@ msgstr "Email 已寄出" #: admin/controller.php:101 msgid "You need to set your user email before being able to send test emails." -msgstr "" +msgstr "在準備要寄出測試郵件時您需要設定您的使用者郵件。" -#: admin/controller.php:116 templates/admin.php:299 +#: admin/controller.php:116 templates/admin.php:316 msgid "Send mode" -msgstr "" +msgstr "寄送模式" -#: admin/controller.php:118 templates/admin.php:312 templates/personal.php:149 +#: admin/controller.php:118 templates/admin.php:329 templates/personal.php:149 msgid "Encryption" msgstr "加密" -#: admin/controller.php:120 templates/admin.php:336 +#: admin/controller.php:120 templates/admin.php:353 msgid "Authentication method" -msgstr "" +msgstr "驗證方式" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -71,11 +72,11 @@ msgstr "認證錯誤" #: ajax/changedisplayname.php:31 msgid "Your full name has been changed." -msgstr "" +msgstr "您的全名已變更。" #: ajax/changedisplayname.php:34 msgid "Unable to change full name" -msgstr "" +msgstr "無法變更全名" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -87,17 +88,17 @@ msgstr "群組增加失敗" #: ajax/decryptall.php:31 msgid "Files decrypted successfully" -msgstr "" +msgstr "檔案解密成功" #: ajax/decryptall.php:33 msgid "" "Couldn't decrypt your files, please check your owncloud.log or ask your " "administrator" -msgstr "" +msgstr "無法解密您的檔案,請檢查您的 owncloud.log 或是詢問您的管理者" #: ajax/decryptall.php:36 msgid "Couldn't decrypt your files, check your password and try again" -msgstr "" +msgstr "無法解密您的檔案,確認您的密碼並再重試一次" #: ajax/lostpassword.php:12 msgid "Email saved" @@ -172,7 +173,7 @@ msgstr "無法修改密碼" #: js/admin.js:73 msgid "Sending..." -msgstr "" +msgstr "寄送中..." #: js/apps.js:45 templates/help.php:4 msgid "User Documentation" @@ -180,7 +181,7 @@ msgstr "用戶說明文件" #: js/apps.js:50 msgid "Admin Documentation" -msgstr "" +msgstr "管理者文件" #: js/apps.js:67 msgid "Update to {appversion}" @@ -232,23 +233,23 @@ msgstr "選擇大頭貼" #: js/personal.js:274 msgid "Very weak password" -msgstr "" +msgstr "非常弱的密碼" #: js/personal.js:275 msgid "Weak password" -msgstr "" +msgstr "弱的密碼" #: js/personal.js:276 msgid "So-so password" -msgstr "" +msgstr "普通的密碼" #: js/personal.js:277 msgid "Good password" -msgstr "" +msgstr "好的密碼" #: js/personal.js:278 msgid "Strong password" -msgstr "" +msgstr "很強的密碼" #: js/personal.js:313 msgid "Decrypting files... Please wait, this can take some time." @@ -305,23 +306,23 @@ msgstr "__language_name__" #: templates/admin.php:8 msgid "Everything (fatal issues, errors, warnings, info, debug)" -msgstr "" +msgstr "全部(嚴重問題,錯誤,警告,資訊,除錯)" #: templates/admin.php:9 msgid "Info, warnings, errors and fatal issues" -msgstr "" +msgstr "資訊,警告,錯誤和嚴重問題" #: templates/admin.php:10 msgid "Warnings, errors and fatal issues" -msgstr "" +msgstr "警告,錯誤和嚴重問題" #: templates/admin.php:11 msgid "Errors and fatal issues" -msgstr "" +msgstr "錯誤和嚴重問題" #: templates/admin.php:12 msgid "Fatal issues only" -msgstr "" +msgstr "只有嚴重問題" #: templates/admin.php:16 templates/admin.php:23 msgid "None" @@ -333,19 +334,19 @@ msgstr "登入" #: templates/admin.php:18 msgid "Plain" -msgstr "" +msgstr "文字" #: templates/admin.php:19 msgid "NT LAN Manager" -msgstr "" +msgstr "NT LAN Manager" #: templates/admin.php:24 msgid "SSL" -msgstr "" +msgstr "SSL" #: templates/admin.php:25 msgid "TLS" -msgstr "" +msgstr "TLS" #: templates/admin.php:47 templates/admin.php:61 msgid "Security Warning" @@ -356,7 +357,7 @@ msgstr "安全性警告" msgid "" "You are accessing %s via HTTP. We strongly suggest you configure your server" " to require using HTTPS instead." -msgstr "" +msgstr "您正透過未加密網頁存取 %s。我們強烈建議您設定您的主機必須使用加密網頁。" #: templates/admin.php:64 msgid "" @@ -394,14 +395,14 @@ msgstr "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模 #: templates/admin.php:104 msgid "Your PHP version is outdated" -msgstr "" +msgstr "您的 PHP 版本已過期" #: templates/admin.php:107 msgid "" "Your PHP version is outdated. We strongly recommend to update to 5.3.8 or " "newer because older versions are known to be broken. It is possible that " "this installation is not working correctly." -msgstr "" +msgstr "您的 PHP 版本已過期。我們強烈建議更新到 5.3.8 或更新的版本,因為舊的版本已知會毀損。這個可能會在安裝後無法使用。" #: templates/admin.php:118 msgid "Locale not working" @@ -409,20 +410,20 @@ msgstr "語系無法運作" #: templates/admin.php:123 msgid "System locale can not be set to a one which supports UTF-8." -msgstr "" +msgstr "系統語系無法設定只支援 UTF-8" #: templates/admin.php:127 msgid "" "This means that there might be problems with certain characters in file " "names." -msgstr "" +msgstr "這個意思是指在檔名中使用一些字元可能會有問題" #: templates/admin.php:131 #, php-format msgid "" "We strongly suggest to install the required packages on your system to " "support one of the following locales: %s." -msgstr "" +msgstr "我們強烈建議在您的系統上安裝必要的套件來支援以下的語系: %s" #: templates/admin.php:143 msgid "Internet connection not working" @@ -444,18 +445,18 @@ msgstr "Cron" #: templates/admin.php:167 #, php-format msgid "Last cron was executed at %s." -msgstr "" +msgstr "最後的排程已執行於 %s。" #: templates/admin.php:170 #, php-format msgid "" "Last cron was executed at %s. This is more than an hour ago, something seems" " wrong." -msgstr "" +msgstr "最後的排程已執行於 %s。現在過了好幾個小時,看起來是有錯誤。" #: templates/admin.php:174 msgid "Cron was not executed yet!" -msgstr "" +msgstr "排程沒有執行!" #: templates/admin.php:184 msgid "Execute one task with each page loaded" @@ -522,93 +523,113 @@ msgstr "允許郵件通知" #: templates/admin.php:254 msgid "Allow users to send mail notification for shared files" +msgstr "允許使用者寄送有關分享檔案的郵件通知" + +#: templates/admin.php:262 +msgid "Set default expire date" +msgstr "" + +#: templates/admin.php:263 +msgid "Expire after " +msgstr "" + +#: templates/admin.php:266 +msgid "days" msgstr "" -#: templates/admin.php:261 +#: templates/admin.php:269 +msgid "Enforce expire date" +msgstr "" + +#: templates/admin.php:270 +msgid "Expire shares by default after N days" +msgstr "" + +#: templates/admin.php:278 msgid "Security" msgstr "安全性" -#: templates/admin.php:274 +#: templates/admin.php:291 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:276 +#: templates/admin.php:293 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "強迫用戶端使用加密連線連接到 %s" -#: templates/admin.php:282 +#: templates/admin.php:299 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." msgstr "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。" -#: templates/admin.php:294 +#: templates/admin.php:311 msgid "Email Server" -msgstr "" +msgstr "郵件伺服器" -#: templates/admin.php:296 +#: templates/admin.php:313 msgid "This is used for sending out notifications." -msgstr "" +msgstr "這是使用於寄送通知。" -#: templates/admin.php:327 +#: templates/admin.php:344 msgid "From address" -msgstr "" +msgstr "寄件地址" -#: templates/admin.php:349 +#: templates/admin.php:366 msgid "Authentication required" -msgstr "" +msgstr "必須驗證" -#: templates/admin.php:353 +#: templates/admin.php:370 msgid "Server address" msgstr "伺服器位址" -#: templates/admin.php:357 +#: templates/admin.php:374 msgid "Port" msgstr "連接埠" -#: templates/admin.php:362 +#: templates/admin.php:379 msgid "Credentials" msgstr "認證" -#: templates/admin.php:363 +#: templates/admin.php:380 msgid "SMTP Username" -msgstr "" +msgstr "SMTP 帳號" -#: templates/admin.php:366 +#: templates/admin.php:383 msgid "SMTP Password" -msgstr "" +msgstr "SMTP 密碼" -#: templates/admin.php:370 +#: templates/admin.php:387 msgid "Test email settings" -msgstr "" +msgstr "測試郵件設定" -#: templates/admin.php:371 +#: templates/admin.php:388 msgid "Send email" -msgstr "" +msgstr "寄送郵件" -#: templates/admin.php:376 +#: templates/admin.php:393 msgid "Log" msgstr "紀錄" -#: templates/admin.php:377 +#: templates/admin.php:394 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:409 +#: templates/admin.php:426 msgid "More" msgstr "更多" -#: templates/admin.php:410 +#: templates/admin.php:427 msgid "Less" msgstr "更少" -#: templates/admin.php:416 templates/personal.php:171 +#: templates/admin.php:433 templates/personal.php:171 msgid "Version" msgstr "版本" -#: templates/admin.php:420 templates/personal.php:174 +#: templates/admin.php:437 templates/personal.php:174 msgid "" "Developed by the ownCloud community, the -licensed by " @@ -705,7 +726,7 @@ msgstr "變更密碼" #: templates/personal.php:61 templates/users.php:86 msgid "Full Name" -msgstr "" +msgstr "全名" #: templates/personal.php:76 msgid "Email" @@ -719,7 +740,7 @@ msgstr "您的電子郵件信箱" msgid "" "Fill in an email address to enable password recovery and receive " "notifications" -msgstr "" +msgstr "填入電子郵件地址來啟用忘記密碼和接收通知的功能" #: templates/personal.php:89 msgid "Profile picture" @@ -743,7 +764,7 @@ msgstr "可以使用 png 或 jpg 格式,最好是方形的,但是您之後 #: templates/personal.php:100 msgid "Your avatar is provided by your original account." -msgstr "" +msgstr "您的圖像是由您原來的帳號所提供的。" #: templates/personal.php:104 msgid "Cancel" @@ -774,7 +795,7 @@ msgstr "使用這個地址來透過 WebDAV 存 #: templates/personal.php:151 msgid "The encryption app is no longer enabled, please decrypt all your files" -msgstr "" +msgstr "加密的軟體不能長時間啟用,請解密所有您的檔案" #: templates/personal.php:157 msgid "Log-in password" @@ -808,7 +829,7 @@ msgstr "預設儲存區" #: templates/users.php:42 templates/users.php:137 msgid "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" -msgstr "" +msgstr "請輸入空間配額(例如: \"512 MB\"或是 \"12 GB\")" #: templates/users.php:46 templates/users.php:146 msgid "Unlimited" @@ -828,7 +849,7 @@ msgstr "儲存區" #: templates/users.php:106 msgid "change full name" -msgstr "" +msgstr "變更全名" #: templates/users.php:110 msgid "set new password" diff --git a/lib/l10n/af_ZA.php b/lib/l10n/af_ZA.php index d6bf5771e8d..566694d1fd9 100644 --- a/lib/l10n/af_ZA.php +++ b/lib/l10n/af_ZA.php @@ -5,6 +5,7 @@ $TRANSLATIONS = array( "Settings" => "Instellings", "Users" => "Gebruikers", "Admin" => "Admin", +"Unknown filetype" => "Onbekende leertipe", "web services under your control" => "webdienste onder jou beheer", "_%n minute ago_::_%n minutes ago_" => array("",""), "_%n hour ago_::_%n hours ago_" => array("",""), diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 8348f7ef0dc..671251884ae 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -56,6 +56,12 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité.", "Please double check the installation guides." => "Zkonzultujte, prosím, průvodce instalací.", "%s shared »%s« with you" => "%s s vámi sdílí »%s«", +"Sharing %s failed, because the user %s is the item owner" => "Sdílení položky %s selhalo, protože uživatel %s je jejím vlastníkem", +"Sharing %s failed, because the user %s does not exist" => "Sdílení položky %s selhalo, protože uživatel %s neexistuje", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Sdílení položky %s selhalo, protože uživatel %s není členem žádné skupiny společné s uživatelem %s", +"Sharing %s failed, because this item is already shared with %s" => "Sdílení položky %s selhalo, protože položka již je s uživatelem %s sdílená", +"Sharing %s failed, because the group %s does not exist" => "Sdílení položky %s selhalo, protože skupina %s neexistuje", +"Sharing %s failed, because %s is not a member of the group %s" => "Sdílení položky %s selhalo, protože uživatel %s není členem skupiny %s", "Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"", "seconds ago" => "před pár sekundami", "_%n minute ago_::_%n minutes ago_" => array("před %n minutou","před %n minutami","před %n minutami"), diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 297cc57bde7..9a334a6ccc2 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the installation guides." => "Bitte prüfe die Installationsanleitungen.", "%s shared »%s« with you" => "%s teilte »%s« mit Dir", +"Sharing %s failed, because the user %s is the item owner" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s Besitzer des Objektes ist", +"Sharing %s failed, because the user %s does not exist" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s nicht existiert", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s kein Gruppenmitglied einer der Gruppen von %s ist", +"Sharing %s failed, because this item is already shared with %s" => "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", +"Sharing %s failed, because the group %s does not exist" => "Freigabe von %s fehlgeschlagen, da die Gruppe %s nicht existiert", +"Sharing %s failed, because %s is not a member of the group %s" => "Freigabe von %s fehlgeschlagen, da %s kein Mitglied der Gruppe %s ist", +"Sharing %s failed, because sharing with links is not allowed" => "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht erlaubt ist", +"Share type %s is not valid for %s" => "Freigabetyp %s ist nicht gültig für %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten", +"Setting permissions for %s failed, because the item was not found" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden", +"Sharing backend %s not found" => "Freigabe-Backend %s nicht gefunden", +"Sharing backend for %s not found" => "Freigabe-Backend für %s nicht gefunden", +"Sharing %s failed, because the user %s is the original sharer" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten", +"Sharing %s failed, because resharing is not allowed" => "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte", +"Sharing %s failed, because the file could not be found in the file cache" => "Freigabe von %s fehlgeschlagen, da die Datei im Datei-Cache nicht gefunden werden konnte", "Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden.", "seconds ago" => "Gerade eben", "_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index d0a4a9b1c6e..ae71118979e 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "%s shared »%s« with you" => "%s hat »%s« mit Ihnen geteilt", +"Sharing %s failed, because the user %s is the item owner" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s Besitzer des Objektes ist", +"Sharing %s failed, because the user %s does not exist" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s nicht existiert", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s kein Gruppenmitglied einer der Gruppen von %s ist", +"Sharing %s failed, because this item is already shared with %s" => "Freigabe von %s fehlgeschlagen, da dieses Objekt schon mit %s geteilt wird", +"Sharing %s failed, because the group %s does not exist" => "Freigabe von %s fehlgeschlagen, da die Gruppe %s nicht existiert", +"Sharing %s failed, because %s is not a member of the group %s" => "Freigabe von %s fehlgeschlagen, da %s kein Mitglied der Gruppe %s ist", +"Sharing %s failed, because sharing with links is not allowed" => "Freigabe von %s fehlgeschlagen, da das Teilen von Verknüpfungen nicht erlaubt ist", +"Share type %s is not valid for %s" => "Freigabetyp %s ist nicht gültig für %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da die Berechtigungen, die erteilten Berechtigungen %s überschreiten", +"Setting permissions for %s failed, because the item was not found" => "Das Setzen der Berechtigungen für %s ist fehlgeschlagen, da das Objekt nicht gefunden wurde", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Freigabe-Backend %s muss in der OCP\\Share_Backend - Schnittstelle implementiert werden", +"Sharing backend %s not found" => "Freigabe-Backend %s nicht gefunden", +"Sharing backend for %s not found" => "Freigabe-Backend für %s nicht gefunden", +"Sharing %s failed, because the user %s is the original sharer" => "Freigabe von %s fehlgeschlagen, da der Nutzer %s der offizielle Freigeber ist", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Freigabe von %s fehlgeschlagen, da die Berechtigungen die erteilten Berechtigungen %s überschreiten", +"Sharing %s failed, because resharing is not allowed" => "Freigabe von %s fehlgeschlagen, da das nochmalige Freigeben einer Freigabe nicht erlaubt ist", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Freigabe von %s fehlgeschlagen, da das Freigabe-Backend für %s nicht in dieser Quelle gefunden werden konnte", +"Sharing %s failed, because the file could not be found in the file cache" => "Freigabe von %s fehlgeschlagen, da die Datei im Datei-Cache nicht gefunden werden konnte", "Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden.", "seconds ago" => "Gerade eben", "_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), diff --git a/lib/l10n/en_GB.php b/lib/l10n/en_GB.php index e1c49392bd8..5b519c75df7 100644 --- a/lib/l10n/en_GB.php +++ b/lib/l10n/en_GB.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Your web server is not yet properly setup to allow files synchronisation because the WebDAV interface seems to be broken.", "Please double check the installation guides." => "Please double check the installation guides.", "%s shared »%s« with you" => "%s shared \"%s\" with you", +"Sharing %s failed, because the user %s is the item owner" => "Sharing %s failed, because the user %s is the item owner", +"Sharing %s failed, because the user %s does not exist" => "Sharing %s failed, because the user %s does not exist", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Sharing %s failed, because the user %s is not a member of any groups that %s is a member of", +"Sharing %s failed, because this item is already shared with %s" => "Sharing %s failed, because this item is already shared with %s", +"Sharing %s failed, because the group %s does not exist" => "Sharing %s failed, because the group %s does not exist", +"Sharing %s failed, because %s is not a member of the group %s" => "Sharing %s failed, because %s is not a member of the group %s", +"Sharing %s failed, because sharing with links is not allowed" => "Sharing %s failed, because sharing with links is not allowed", +"Share type %s is not valid for %s" => "Share type %s is not valid for %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Setting permissions for %s failed, because the permissions exceed permissions granted to %s", +"Setting permissions for %s failed, because the item was not found" => "Setting permissions for %s failed, because the item was not found", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Sharing backend %s must implement the interface OCP\\Share_Backend", +"Sharing backend %s not found" => "Sharing backend %s not found", +"Sharing backend for %s not found" => "Sharing backend for %s not found", +"Sharing %s failed, because the user %s is the original sharer" => "Sharing %s failed, because the user %s is the original sharer", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Sharing %s failed, because the permissions exceed permissions granted to %s", +"Sharing %s failed, because resharing is not allowed" => "Sharing %s failed, because resharing is not allowed", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Sharing %s failed, because the sharing backend for %s could not find its source", +"Sharing %s failed, because the file could not be found in the file cache" => "Sharing %s failed, because the file could not be found in the file cache", "Could not find category \"%s\"" => "Could not find category \"%s\"", "seconds ago" => "seconds ago", "_%n minute ago_::_%n minutes ago_" => array("%n minute ago","%n minutes ago"), diff --git a/lib/l10n/es.php b/lib/l10n/es.php index c01239cca7a..351d469225d 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -56,6 +56,20 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", "Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", "%s shared »%s« with you" => "%s ha compatido »%s« contigo", +"Sharing %s failed, because the user %s is the item owner" => "Compartiendo %s ha fallado, ya que el usuario %s es el dueño del elemento", +"Sharing %s failed, because the user %s does not exist" => "Compartiendo %s ha fallado, ya que el usuario %s no existe", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Compartiendo %s ha fallado, ya que el usuario %s no es miembro de algún grupo que %s es miembro", +"Sharing %s failed, because this item is already shared with %s" => "Compartiendo %s ha fallado, ya que este elemento ya está compartido con %s", +"Sharing %s failed, because the group %s does not exist" => "Compartiendo %s ha fallado, ya que el grupo %s no existe", +"Sharing %s failed, because %s is not a member of the group %s" => "Compartiendo %s ha fallado, ya que %s no es miembro del grupo %s", +"Sharing %s failed, because sharing with links is not allowed" => "Compartiendo %s ha fallado, ya que compartir con enlaces no está permitido", +"Share type %s is not valid for %s" => "Compartir tipo %s no es válido para %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Configuración de permisos para %s ha fallado, ya que los permisos superan los permisos dados a %s", +"Setting permissions for %s failed, because the item was not found" => "Configuración de permisos para %s ha fallado, ya que el elemento no fue encontrado", +"Sharing %s failed, because the user %s is the original sharer" => "Compartiendo %s ha fallado, ya que el usuario %s es el compartidor original", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Compartiendo %s ha fallado, ya que los permisos superan los permisos otorgados a %s", +"Sharing %s failed, because resharing is not allowed" => "Compartiendo %s ha fallado, ya que volver a compartir no está permitido", +"Sharing %s failed, because the file could not be found in the file cache" => "Compartiendo %s ha fallado, ya que el archivo no pudo ser encontrado en el cache de archivo", "Could not find category \"%s\"" => "No puede encontrar la categoria \"%s\"", "seconds ago" => "hace segundos", "_%n minute ago_::_%n minutes ago_" => array("Hace %n minuto","Hace %n minutos"), diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index f0db728b557..082e1222d70 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -56,6 +56,15 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.", "Please double check the installation guides." => "Palun tutvu veelkord paigalduse juhenditega.", "%s shared »%s« with you" => "%s jagas sinuga »%s«", +"Share type %s is not valid for %s" => "Jagamise tüüp %s ei ole õige %s jaoks", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Jagamise tagarakend %s peab kasutusele võtma OCP\\Share_Backend liidese", +"Sharing backend %s not found" => "Jagamise tagarakendit %s ei leitud", +"Sharing backend for %s not found" => "Jagamise tagarakendit %s jaoks ei leitud", +"Sharing %s failed, because the user %s is the original sharer" => "%s jagamine ebaõnnestus, kuna kasutaja %s on algne jagaja", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "%s jagamine ebaõnnestus, kuna jagamise õigused ületavad %s jaoks määratud õigusi", +"Sharing %s failed, because resharing is not allowed" => "%s jagamine ebaõnnestus, kuna edasijagamine pole lubatud", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "%s jagamine ebaõnnestus, kuna jagamise tagarakend ei suutnud leida %s jaoks lähteallikat", +"Sharing %s failed, because the file could not be found in the file cache" => "%s jagamine ebaõnnestus, kuna faili ei suudetud leida failide puhvrist", "Could not find category \"%s\"" => "Ei leia kategooriat \"%s\"", "seconds ago" => "sekundit tagasi", "_%n minute ago_::_%n minutes ago_" => array("","%n minutit tagasi"), diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 13e97e1b677..8396cf14387 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -23,6 +23,7 @@ $TRANSLATIONS = array( "App does not provide an info.xml file" => "Sovellus ei sisällä info.xml-tiedostoa", "App can't be installed because of not allowed code in the App" => "Sovellusta ei voi asentaa, koska sovellus sisältää kiellettyä koodia", "App can't be installed because it is not compatible with this version of ownCloud" => "Sovellusta ei voi asentaa, koska se ei ole yhteensopiva käytössä olevan ownCloud-version kanssa", +"App can't be installed because the version in info.xml/version is not the same as the version reported from the app store" => "Sovellusta ei voi asentaa, koska info.xml/version ilmoittaa versioksi eri arvon kuin sovelluskauppa", "App directory already exists" => "Sovelluskansio on jo olemassa", "Can't create app folder. Please fix permissions. %s" => "Sovelluskansion luominen ei onnistu. Korjaa käyttöoikeudet. %s", "Application is not enabled" => "Sovellusta ei ole otettu käyttöön", @@ -38,17 +39,30 @@ $TRANSLATIONS = array( "MS SQL username and/or password not valid: %s" => "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s", "MySQL/MariaDB username and/or password not valid" => "MySQL/MariaDB-käyttäjätunnus ja/tai salasana on virheellinen", "DB Error: \"%s\"" => "Tietokantavirhe: \"%s\"", +"Offending command was: \"%s\"" => "Loukkaava komento oli: \"%s\"", "MySQL/MariaDB user '%s'@'localhost' exists already." => "MySQL/MariaDB-käyttäjä '%s'@'localhost' on jo olemassa.", "Drop this user from MySQL/MariaDB" => "Pudota tämä käyttäjä MySQL/MariaDB:stä", "MySQL/MariaDB user '%s'@'%%' already exists" => "MySQL/MariaDB-käyttäjä '%s'@'%%' on jo olemassa", "Drop this user from MySQL/MariaDB." => "Pudota tämä käyttäjä MySQL/MariaDB:stä.", "Oracle connection could not be established" => "Oracle-yhteyttä ei voitu muodostaa", "Oracle username and/or password not valid" => "Oraclen käyttäjätunnus ja/tai salasana on väärin", +"Offending command was: \"%s\", name: %s, password: %s" => "Loukkaava komento oli: \"%s\", nimi: %s, salasana: %s", "PostgreSQL username and/or password not valid" => "PostgreSQL:n käyttäjätunnus ja/tai salasana on väärin", "Set an admin username." => "Aseta ylläpitäjän käyttäjätunnus.", "Set an admin password." => "Aseta ylläpitäjän salasana.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web-palvelimen asetukset eivät ole kelvolliset tiedostojen synkronointia varten, koska WebDAV-liitäntä vaikuttaa olevan rikki.", "Please double check the installation guides." => "Lue tarkasti asennusohjeet.", "%s shared »%s« with you" => "%s jakoi kohteen »%s« kanssasi", +"Sharing %s failed, because the user %s is the item owner" => "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on kohteen omistaja", +"Sharing %s failed, because the user %s does not exist" => "Kohteen %s jakaminen epäonnistui, koska käyttäjää %s ei ole olemassa", +"Sharing %s failed, because this item is already shared with %s" => "Kohteen %s jakaminen epäonnistui, koska kohde on jo jaettu käyttäjän %s kanssa", +"Sharing %s failed, because the group %s does not exist" => "Kohteen %s jakaminen epäonnistui, koska ryhmää %s ei ole olemassa", +"Sharing %s failed, because %s is not a member of the group %s" => "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s ei ole ryhmän %s jäsen", +"Sharing %s failed, because sharing with links is not allowed" => "Kohteen %s jakaminen epäonnistui, koska jakaminen linkkejä käyttäen ei ole sallittu", +"Setting permissions for %s failed, because the item was not found" => "Kohteen %s oikeuksien asettaminen epäonnistui, koska kohdetta ei löytynyt", +"Sharing %s failed, because the user %s is the original sharer" => "Kohteen %s jakaminen epäonnistui, koska käyttäjä %s on alkuperäinen jakaja", +"Sharing %s failed, because resharing is not allowed" => "Kohteen %s jakaminen epäonnistui, koska jakaminen uudelleen ei ole sallittu", +"Sharing %s failed, because the file could not be found in the file cache" => "Kohteen %s jakaminen epäonnistui, koska tiedostoa ei löytynyt tiedostovälimuistista", "Could not find category \"%s\"" => "Luokkaa \"%s\" ei löytynyt", "seconds ago" => "sekuntia sitten", "_%n minute ago_::_%n minutes ago_" => array("%n minuutti sitten","%n minuuttia sitten"), diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index b13970c610d..f4e916aa9c2 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -56,6 +56,20 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut.", "Please double check the installation guides." => "Veuillez vous référer au guide d'installation.", "%s shared »%s« with you" => "%s partagé »%s« avec vous", +"Sharing %s failed, because the user %s is the item owner" => "Le partage de %s a échoué car l'utilisateur %s est le propriétaire de l'objet", +"Sharing %s failed, because the user %s does not exist" => "Le partage de %s a échoué car l'utilisateur %s n'existe pas", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Le partage de %s a échoué car l'utilisateur %s n'est membre d'aucun groupe auquel %s appartient", +"Sharing %s failed, because this item is already shared with %s" => "Le partage de %s a échoué car cet objet est déjà partagé avec %s", +"Sharing %s failed, because the group %s does not exist" => "Le partage de %s a échoué car le groupe %s n'existe pas", +"Sharing %s failed, because %s is not a member of the group %s" => "Le partage de %s a échoué car %s n'est pas membre du groupe %s", +"Sharing %s failed, because sharing with links is not allowed" => "Le partage de %s a échoué car un partage de lien n'est pas permis", +"Share type %s is not valid for %s" => "Le type de partage %s n'est pas valide pour %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Le réglage des permissions pour %s a échoué car les permissions dépassent celle accordée à %s", +"Setting permissions for %s failed, because the item was not found" => "Le réglage des permissions pour %s a échoué car l'objet n'a pas été trouvé", +"Sharing %s failed, because the user %s is the original sharer" => "Le partage de %s a échoué car l'utilisateur %s est déjà l'utilisateur à l'origine du partage.", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Le partage de %s a échoué car les permissions dépassent les permissions accordées à %s", +"Sharing %s failed, because resharing is not allowed" => "Le partage de %s a échoué car le repartage n'est pas autorisé", +"Sharing %s failed, because the file could not be found in the file cache" => "Le partage de %s a échoué car le fichier n'a pas été trouvé dans les fichiers mis en cache.", "Could not find category \"%s\"" => "Impossible de trouver la catégorie \"%s\"", "seconds ago" => "il y a quelques secondes", "_%n minute ago_::_%n minutes ago_" => array("","il y a %n minutes"), diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index 2a62b41e22d..b61df49acc0 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar.", "Please double check the installation guides." => "Volva comprobar as guías de instalación", "%s shared »%s« with you" => "%s compartiu «%s» con vostede", +"Sharing %s failed, because the user %s is the item owner" => "Fallou a compartición de %s, xa que o propietario do elemento é o usuario %s", +"Sharing %s failed, because the user %s does not exist" => "Fallou a compartición de %s, xa que o usuario %s non existe", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Fallou a compartición de %s, xa que o usuario %s non é membro de ningún grupo que sexa membro de %s", +"Sharing %s failed, because this item is already shared with %s" => "Fallou a compartición de %s, xa que este elemento xa está compartido con %s", +"Sharing %s failed, because the group %s does not exist" => "Fallou a compartición de %s, xa que o grupo %s non existe", +"Sharing %s failed, because %s is not a member of the group %s" => "Fallou a compartición de %s, xa que %s non é membro do grupo %s", +"Sharing %s failed, because sharing with links is not allowed" => "Fallou a compartición de %s, xa que non está permitido compartir con ligazóns", +"Share type %s is not valid for %s" => "Non se admite a compartición do tipo %s para %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Non é posíbel estabelecer permisos para %s, xa que os permisos superan os permisos concedidos a %s", +"Setting permissions for %s failed, because the item was not found" => "Non é posíbel estabelecer permisos para %s, xa que non se atopa o elemento", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "A infraestrutura de compartición %s ten que implementar a interface OCP\\Share_Backend", +"Sharing backend %s not found" => "Non se atopou a infraestrutura de compartición %s", +"Sharing backend for %s not found" => "Non se atopou a infraestrutura de compartición para %s", +"Sharing %s failed, because the user %s is the original sharer" => "Fallou a compartición de %s, xa que a compartición orixinal é do usuario %s", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Fallou a compartición de %s, xa que os permisos superan os permisos concedidos a %s", +"Sharing %s failed, because resharing is not allowed" => "Fallou a compartición de %s, xa que non está permitido repetir a compartción", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Fallou a compartición de %s, xa que a infraestrutura de compartición para %s non foi quen de atopar a orixe", +"Sharing %s failed, because the file could not be found in the file cache" => "Fallou a compartición de %s, xa que non foi posíbel atopar o ficheiro na caché de ficheiros", "Could not find category \"%s\"" => "Non foi posíbel atopar a categoría «%s»", "seconds ago" => "segundos atrás", "_%n minute ago_::_%n minutes ago_" => array("hai %n minuto","hai %n minutos"), diff --git a/lib/l10n/ia.php b/lib/l10n/ia.php index 34f43bc424a..1fb600d76b4 100644 --- a/lib/l10n/ia.php +++ b/lib/l10n/ia.php @@ -5,12 +5,20 @@ $TRANSLATIONS = array( "Settings" => "Configurationes", "Users" => "Usatores", "Admin" => "Administration", +"Unknown filetype" => "Typo de file incognite", +"Invalid image" => "Imagine invalide", "web services under your control" => "servicios web sub tu controlo", "Files" => "Files", "Text" => "Texto", -"_%n minute ago_::_%n minutes ago_" => array("",""), -"_%n hour ago_::_%n hours ago_" => array("",""), +"seconds ago" => "secundas passate", +"_%n minute ago_::_%n minutes ago_" => array("","%n minutas passate"), +"_%n hour ago_::_%n hours ago_" => array("","%n horas passate"), +"today" => "hodie", +"yesterday" => "heri", "_%n day go_::_%n days ago_" => array("",""), -"_%n month ago_::_%n months ago_" => array("","") +"last month" => "ultime mense", +"_%n month ago_::_%n months ago_" => array("",""), +"last year" => "ultime anno", +"years ago" => "annos passate" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/it.php b/lib/l10n/it.php index b76b5060a4d..e565b01fdf1 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -56,6 +56,22 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", "Please double check the installation guides." => "Leggi attentamente le guide d'installazione.", "%s shared »%s« with you" => "%s ha condiviso «%s» con te", +"Sharing %s failed, because the user %s is the item owner" => "Condivisione di %s non riuscita, poiché l'utente %s è il proprietario dell'oggetto", +"Sharing %s failed, because the user %s does not exist" => "Condivisione di %s non riuscita, poiché l'utente %s non esiste", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Condivisione di %s non riuscita, poiché l'utente %s non appartiene ad alcun gruppo di cui %s è membro", +"Sharing %s failed, because this item is already shared with %s" => "Condivisione di %s non riuscita, poiché l'oggetto è già condiviso con %s", +"Sharing %s failed, because the group %s does not exist" => "Condivisione di %s non riuscita, poiché il gruppo %s non esiste", +"Sharing %s failed, because %s is not a member of the group %s" => "Condivisione di %s non riuscita, poiché %s non appartiene al gruppo %s", +"Sharing %s failed, because sharing with links is not allowed" => "Condivisione di %s non riuscita, poiché i link non sono ammessi", +"Share type %s is not valid for %s" => "Il tipo di condivisione %s non è valido per %s", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Il motore di condivisione %s deve implementare l'interfaccia OCP\\Share_Backend", +"Sharing backend %s not found" => "Motore di condivisione %s non trovato", +"Sharing backend for %s not found" => "Motore di condivisione di %s non trovato", +"Sharing %s failed, because the user %s is the original sharer" => "Condivisione di %s non riuscita, poiché l'utente %s l'ha condiviso precedentemente", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Condivisione di %s non riuscita, poiché i permessi sono superiori a quelli rilasciati a %s", +"Sharing %s failed, because resharing is not allowed" => "Condivisione di %s non riuscita, poiché la ri-condivisione non è ammessa", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Condivisione di %s non riuscita, poiché il motore di condivisione per %s non riesce a trovare la sua origine", +"Sharing %s failed, because the file could not be found in the file cache" => "Condivisione di %s non riuscita, poiché il file non risiede nella cache", "Could not find category \"%s\"" => "Impossibile trovare la categoria \"%s\"", "seconds ago" => "secondi fa", "_%n minute ago_::_%n minutes ago_" => array("%n minuto fa","%n minuti fa"), diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index f786e1832a2..66af696900e 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony.", "Please double check the installation guides." => "Sprawdź ponownie przewodniki instalacji.", "%s shared »%s« with you" => "%s Współdzielone »%s« z tobą", +"Sharing %s failed, because the user %s is the item owner" => "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s jest właścicielem elementu", +"Sharing %s failed, because the user %s does not exist" => "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s nie istnieje", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s nie jest członkiem żadnej grupy której członkiem jest %s", +"Sharing %s failed, because this item is already shared with %s" => "Współdzielenie %s nie powiodło się, ponieważ element jest już współdzielony z %s", +"Sharing %s failed, because the group %s does not exist" => "Współdzielenie %s nie powiodło się, ponieważ grupa %s nie istnieje", +"Sharing %s failed, because %s is not a member of the group %s" => "Współdzielenie %s nie powiodło się, ponieważ %s nie jest członkiem grupy %s", +"Sharing %s failed, because sharing with links is not allowed" => "Współdzielenie %s nie powiodło się, ponieważ współdzielenie z linkami nie jest dozwolone", +"Share type %s is not valid for %s" => "Typ udziału %s nie jest właściwy dla %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Ustawienie uprawnień dla %s nie powiodło się, ponieważ uprawnienia wykraczają poza przydzielone %s", +"Setting permissions for %s failed, because the item was not found" => "Ustawienie uprawnień dla %s nie powiodło się, ponieważ element nie został znaleziony", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Zaplecze do współdzielenia %s musi implementować interfejs OCP\\Share_Backend", +"Sharing backend %s not found" => "Zaplecze %s do współdzielenia nie zostało znalezione", +"Sharing backend for %s not found" => "Zaplecze do współdzielenia %s nie zostało znalezione", +"Sharing %s failed, because the user %s is the original sharer" => "Współdzielenie %s nie powiodło się, ponieważ użytkownik %s jest udostępniającym", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Współdzielenie %s nie powiodło się, ponieważ uprawnienia przekraczają te udzielone %s", +"Sharing %s failed, because resharing is not allowed" => "Współdzielenie %s nie powiodło się, ponieważ ponowne współdzielenie nie jest dozwolone", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Współdzielenie %s nie powiodło się, ponieważ zaplecze współdzielenia dla %s nie mogło znaleźć jego źródła", +"Sharing %s failed, because the file could not be found in the file cache" => "Współdzielenie %s nie powiodło się, ponieważ plik nie może zostać odnaleziony w buforze plików", "Could not find category \"%s\"" => "Nie można odnaleźć kategorii \"%s\"", "seconds ago" => "sekund temu", "_%n minute ago_::_%n minutes ago_" => array("%n minute temu","%n minut temu","%n minut temu"), diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 3cc02f76524..d86f7757ae1 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada.", "Please double check the installation guides." => "Por favor, confira os guias de instalação.", "%s shared »%s« with you" => "%s compartilhou »%s« com você", +"Sharing %s failed, because the user %s is the item owner" => "Compartilhamento %s falhou, porque o usuário %s é o proprietário do item", +"Sharing %s failed, because the user %s does not exist" => "Compartilhamento %s falhou, porque o usuário %s não existe", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Compartilhamento %s falhou, porque o usuário %s não é membro de nenhum grupo que o usuário %s pertença", +"Sharing %s failed, because this item is already shared with %s" => "Compartilhamento %s falhou, porque este ítem já está compartilhado com %s", +"Sharing %s failed, because the group %s does not exist" => "Compartilhamento %s falhou, porque o grupo %s não existe", +"Sharing %s failed, because %s is not a member of the group %s" => "Compartilhamento %s falhou, porque %s não é membro do grupo %s", +"Sharing %s failed, because sharing with links is not allowed" => "Compartilhamento %s falhou, porque compartilhamento com links não é permitido", +"Share type %s is not valid for %s" => "Tipo de compartilhamento %s não é válido para %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Definir permissões para %s falhou, porque as permissões excedem as permissões concedidas a %s", +"Setting permissions for %s failed, because the item was not found" => "Definir permissões para %s falhou, porque o item não foi encontrado", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Compartilhando backend %s deve implementar a interface OCP\\Share_Backend", +"Sharing backend %s not found" => "Compartilhamento backend %s não encontrado", +"Sharing backend for %s not found" => "Compartilhamento backend para %s não encontrado", +"Sharing %s failed, because the user %s is the original sharer" => "Compartilhando %s falhou, porque o usuário %s é o compartilhador original", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Compartilhamento %s falhou, porque as permissões excedem as permissões concedidas a %s", +"Sharing %s failed, because resharing is not allowed" => "Compartilhamento %s falhou, porque recompartilhamentos não são permitidos", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Compartilhamento %s falhou, porque a infra-estrutura de compartilhamento para %s não conseguiu encontrar a sua fonte", +"Sharing %s failed, because the file could not be found in the file cache" => "Compartilhamento %s falhou, porque o arquivo não pôde ser encontrado no cache de arquivos", "Could not find category \"%s\"" => "Impossível localizar categoria \"%s\"", "seconds ago" => "segundos atrás", "_%n minute ago_::_%n minutes ago_" => array("","ha %n minutos"), diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index 86172b5ab71..eeaa0ddf96b 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -56,6 +56,16 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.", "Please double check the installation guides." => "Preverite navodila namestitve.", "%s shared »%s« with you" => "%s je omogočil souporabo »%s«", +"Sharing %s failed, because the user %s is the item owner" => "Nastavljanje souporabe %s je spodletelo, ker je uporabnik %s lastnik predmeta.", +"Sharing %s failed, because the user %s does not exist" => "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ne obstaja.", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ni član nobene skupine, v kateri je tudi uporabnik %s.", +"Sharing %s failed, because this item is already shared with %s" => "Nastavljanje souporabe %s je spodletela, ker je ima uporabnik %s predmet že v souporabi.", +"Sharing %s failed, because the group %s does not exist" => "Nastavljanje souporabe %s je spodletelo, ker je skupina %s ne obstaja.", +"Sharing %s failed, because %s is not a member of the group %s" => "Nastavljanje souporabe %s je spodletelo, ker uporabnik %s ni član skupine %s.", +"Sharing %s failed, because sharing with links is not allowed" => "Nastavljanje souporabe %s je spodletelo, ker souporaba preko povezave ni dovoljena.", +"Share type %s is not valid for %s" => "Vrsta souporabe %s za %s ni veljavna.", +"Sharing backend %s not found" => "Ozadnjega programa %s za souporabo ni mogoče najti", +"Sharing backend for %s not found" => "Ozadnjega programa za souporabo za %s ni mogoče najti", "Could not find category \"%s\"" => "Kategorije \"%s\" ni mogoče najti.", "seconds ago" => "pred nekaj sekundami", "_%n minute ago_::_%n minutes ago_" => array("pred %n minuto","pred %n minutama","pred %n minutami","pred %n minutami"), diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 70ca0bed383..ba63531ad76 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera.", "Please double check the installation guides." => "Var god kontrollera installationsguiden.", "%s shared »%s« with you" => "%s delade »%s« med dig", +"Sharing %s failed, because the user %s is the item owner" => "Delning %s misslyckades därför att användaren %s är den som äger objektet", +"Sharing %s failed, because the user %s does not exist" => "Delning %s misslyckades därför att användaren %s inte existerar", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "Delning %s misslyckades därför att användaren %s inte är medlem i någon utav de grupper som %s är medlem i", +"Sharing %s failed, because this item is already shared with %s" => "Delning %s misslyckades därför att objektet redan är delat med %s", +"Sharing %s failed, because the group %s does not exist" => "Delning %s misslyckades därför att gruppen %s inte existerar", +"Sharing %s failed, because %s is not a member of the group %s" => "Delning %s misslyckades därför att %s inte ingår i gruppen %s", +"Sharing %s failed, because sharing with links is not allowed" => "Delning %s misslyckades därför att delning utav länkar inte är tillåtet", +"Share type %s is not valid for %s" => "Delningstyp %s är inte giltig för %s", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "Misslyckades att sätta rättigheter för %s därför att rättigheterna överskrider de som är tillåtna för %s", +"Setting permissions for %s failed, because the item was not found" => "Att sätta rättigheterna för %s misslyckades därför att objektet inte hittades", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Delningsgränssnittet %s måste implementera gränssnittet OCP\\Share_Backend", +"Sharing backend %s not found" => "Delningsgränssnittet %s hittades inte", +"Sharing backend for %s not found" => "Delningsgränssnittet för %s hittades inte", +"Sharing %s failed, because the user %s is the original sharer" => "Delning %s misslyckades därför att användaren %s är den som delade objektet först", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "Delning %s misslyckades därför att rättigheterna överskrider de rättigheter som är tillåtna för %s", +"Sharing %s failed, because resharing is not allowed" => "Delning %s misslyckades därför att vidaredelning inte är tillåten", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "Delning %s misslyckades därför att delningsgränsnittet för %s inte kunde hitta sin källa", +"Sharing %s failed, because the file could not be found in the file cache" => "Delning %s misslyckades därför att filen inte kunde hittas i filcachen", "Could not find category \"%s\"" => "Kunde inte hitta kategorin \"%s\"", "seconds ago" => "sekunder sedan", "_%n minute ago_::_%n minutes ago_" => array("%n minut sedan","%n minuter sedan"), diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index c1275da2a72..7cc1b155bcd 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -56,6 +56,24 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya eşitlemesine izin vermek üzere düzgün bir şekilde yapılandırılmamış. WebDAV arayüzü sorunlu görünüyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "%s shared »%s« with you" => "%s sizinle »%s« paylaşımında bulundu", +"Sharing %s failed, because the user %s is the item owner" => "%s paylaşımı, %s öge sahibi olduğundan başarısız oldu", +"Sharing %s failed, because the user %s does not exist" => "%s paylaşımı, %s kullanıcısı mevcut olmadığından başarısız oldu", +"Sharing %s failed, because the user %s is not a member of any groups that %s is a member of" => "%s paylaşımı, %s kullanıcısının %s üyeliklerinden birine sahip olmadığından başarısız oldu", +"Sharing %s failed, because this item is already shared with %s" => "%s paylaşımı, %s ile zaten paylaşıldığından dolayı başarısız oldu", +"Sharing %s failed, because the group %s does not exist" => "%s paylaşımı, %s grubu mevcut olmadığından başarısız oldu", +"Sharing %s failed, because %s is not a member of the group %s" => "%s paylaşımı, %s kullanıcısı %s grup üyesi olmadığından başarısız oldu", +"Sharing %s failed, because sharing with links is not allowed" => "%s paylaşımı, bağlantılar ile paylaşım izin verilmediğinden başarısız oldu", +"Share type %s is not valid for %s" => "%s paylaşım türü %s için geçerli değil", +"Setting permissions for %s failed, because the permissions exceed permissions granted to %s" => "%s için izinler, izinler %s için verilen izinleri aştığından dolayı ayarlanamadı", +"Setting permissions for %s failed, because the item was not found" => "%s için izinler öge bulunamadığından ayarlanamadı", +"Sharing backend %s must implement the interface OCP\\Share_Backend" => "Paylaşma arka ucu %s OCP\\Share_Backend arayüzünü desteklemeli", +"Sharing backend %s not found" => "Paylaşım arka ucu %s bulunamadı", +"Sharing backend for %s not found" => "%s için paylaşım arka ucu bulunamadı", +"Sharing %s failed, because the user %s is the original sharer" => "%s paylaşımı, %s kullanıcısı özgün paylaşan kişi olduğundan başarısız oldu", +"Sharing %s failed, because the permissions exceed permissions granted to %s" => "%s paylaşımı, izinler %s için verilen izinleri aştığından dolayı başarısız oldu", +"Sharing %s failed, because resharing is not allowed" => "%s paylaşımı, tekrar paylaşımın izin verilmemesinden dolayı başarısız oldu", +"Sharing %s failed, because the sharing backend for %s could not find its source" => "%s paylaşımı, %s için arka ucun kaynağını bulamamasından dolayı başarısız oldu", +"Sharing %s failed, because the file could not be found in the file cache" => "%s paylaşımı, dosyanın dosya önbelleğinde bulunamamasınndan dolayı başarısız oldu", "Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı", "seconds ago" => "saniyeler önce", "_%n minute ago_::_%n minutes ago_" => array("","%n dakika önce"), diff --git a/settings/l10n/af_ZA.php b/settings/l10n/af_ZA.php index b6c50252667..ff565e9cec2 100644 --- a/settings/l10n/af_ZA.php +++ b/settings/l10n/af_ZA.php @@ -1,7 +1,9 @@ "Sekuriteits waarskuwing", "Password" => "Wagwoord", "New password" => "Nuwe wagwoord", +"Cancel" => "Kanseleer", "Username" => "Gebruikersnaam" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 030106071cf..0b2ca6fea36 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquier persona", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", "Allow mail notification" => "Permitir notificaciones por correo electrónico", +"Allow users to send mail notification for shared files" => "Permitir a los usuarios enviar mensajes de notificación para ficheros compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión cifrada.", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 6e8bc71132e..7d834e9170a 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,13 +1,22 @@ "Parámetro suministrado invalido para %s", +"Saved" => "Guardado", +"test email settings" => "Configuración de correo de prueba.", +"If you received this email, the settings seem to be correct." => "Si recibió este correo, la configuración parece estar correcta.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Un problema ocurrió cuando se intentó enviar el correo electrónico. Por favor revea su configuración.", "Email sent" => "e-mail mandado", +"You need to set your user email before being able to send test emails." => "Necesita especificar el usuario de correo electrónico antes de poder enviar correos electrónicos de prueba.", +"Send mode" => "Modo de envio", "Encryption" => "Encriptación", +"Authentication method" => "Método de autenticación", "Unable to load list from App Store" => "Imposible cargar la lista desde el App Store", "Authentication error" => "Error al autenticar", "Your full name has been changed." => "Su nombre completo ha sido cambiado.", "Unable to change full name" => "Imposible cambiar el nombre completo", "Group already exists" => "El grupo ya existe", "Unable to add group" => "No fue posible añadir el grupo", +"Files decrypted successfully" => "Archivos des-encriptados correctamente", "Email saved" => "e-mail guardado", "Invalid email" => "El e-mail no es válido ", "Unable to delete group" => "No fue posible borrar el grupo", @@ -24,7 +33,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "Contraseña de recuperación administrativa incorrecta. Por favor, chequee la clave e intente de nuevo", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "El back-end no soporta cambios de contraseña, pero las claves de encriptación fueron subidas exitosamente.", "Unable to change password" => "Imposible cambiar la contraseña", +"Sending..." => "Enviando...", "User Documentation" => "Documentación de Usuario", +"Admin Documentation" => "Documentación de Administrador.", "Update to {appversion}" => "Actualizar a {appversion}", "Disable" => "Desactivar", "Enable" => "Activar", @@ -37,6 +48,11 @@ $TRANSLATIONS = array( "Update" => "Actualizar", "Updated" => "Actualizado", "Select a profile picture" => "Seleccionar una imágen de perfil", +"Very weak password" => "Contraseña muy débil.", +"Weak password" => "Contraseña débil.", +"So-so password" => "Contraseña de nivel medio. ", +"Good password" => "Buena contraseña. ", +"Strong password" => "Contraseña fuerte.", "Decrypting files... Please wait, this can take some time." => "Desencriptando archivos... Por favor espere, esto puede tardar.", "deleted" => "borrado", "undo" => "deshacer", @@ -57,6 +73,10 @@ $TRANSLATIONS = array( "Fatal issues only" => "Notificaciones fatales solamente", "None" => "Ninguno", "Login" => "Ingresar", +"Plain" => "Plano", +"NT LAN Manager" => "Administrador NT LAN", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Advertencia de seguridad", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Está accediendo %s vía HTTP. Se sugiere fuertemente que configure su servidor para requerir el uso de HTTPS en vez del otro.", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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." => "El directorio de datos y tus archivos probablemente sean accesibles desde Internet. El archivo .htaccess no funciona. Sugerimos fuertemente que configures tu servidor web de forma tal que el archivo de directorios no sea accesible o muevas el mismo fuera de la raíz de los documentos del servidor web.", @@ -89,13 +109,22 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera.", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los de sus mismos grupos", "Allow mail notification" => "Permitir notificaciones por correo", +"Allow users to send mail notification for shared files" => "Habilitar a los usuarios para enviar notificaciones por correo para archivos compartidos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Fuerza al cliente a conectarse a %s por medio de una conexión encriptada.", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor conéctese a su %s por medio de HTTPS para habilitar o deshabilitar la característica SSL", +"Email Server" => "Servidor de correo electrónico", +"This is used for sending out notifications." => "Esto es usado para enviar notificaciones.", +"From address" => "Dirección remitente", +"Authentication required" => "Autentificación requerida", "Server address" => "Dirección del servidor", "Port" => "Puerto", "Credentials" => "Credenciales", +"SMTP Username" => "Nombre de usuario SMTP", +"SMTP Password" => "Contraseña SMTP", +"Test email settings" => "Configuracion de correo de prueba.", +"Send email" => "Enviar correo", "Log" => "Log", "Log level" => "Nivel de Log", "More" => "Más", @@ -105,7 +134,9 @@ $TRANSLATIONS = array( "Add your App" => "Añadí tu App", "More Apps" => "Más Apps", "Select an App" => "Elegí una App", +"Documentation:" => "Documentación:", "See application page at apps.owncloud.com" => "Mirá la web de aplicaciones apps.owncloud.com", +"See application website" => "Ver sitio web de la aplicación", "-licensed by " => "-licenciado por ", "Administrator Documentation" => "Documentación de Administrador", "Online Documentation" => "Documentación en línea", @@ -124,6 +155,7 @@ $TRANSLATIONS = array( "Full Name" => "Nombre completo", "Email" => "e-mail", "Your email address" => "Tu dirección de e-mail", +"Fill in an email address to enable password recovery and receive notifications" => "Rellene una direccion de correo para habilitar la recuperacion de contraseña y recibir notificaciones. ", "Profile picture" => "Imágen de perfil", "Upload new" => "Subir nuevo", "Select new from Files" => "Seleccionar nuevo desde archivos", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index d0bc283d87d..f82799eb71f 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -76,6 +76,7 @@ $TRANSLATIONS = array( "Security Warning" => "Turvallisuusvaroitus", "You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "Käytät %sia HTTP-yhteydellä. Suosittelemme määrittämään palvelimen vaatimaan salattua HTTPS-yhteyttä.", "Setup Warning" => "Asetusvaroitus", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web-palvelimen asetukset eivät ole kelvolliset tiedostojen synkronointia varten, koska WebDAV-liitäntä vaikuttaa olevan rikki.", "Please double check the installation guides." => "Lue asennusohjeet tarkasti.", "Module 'fileinfo' missing" => "Moduuli 'fileinfo' puuttuu", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-moduuli \"fileinfo\" puuttuu. Sen käyttö on erittäin suositeltavaa, jotta MIME-tyypin havaitseminen onnistuu parhaalla mahdollisella tavalla.", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index 35ddeb30ca8..0230b3921f8 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -1,12 +1,19 @@ "Message de e-posta inviate", "Language changed" => "Linguage cambiate", "Invalid request" => "Requesta invalide", "Error" => "Error", "Update" => "Actualisar", +"Very weak password" => "Contrasigno multo debile", +"Weak password" => "Contrasigno debile", +"So-so password" => "Contrasigno passabile", +"Good password" => "Contrasigno bon", +"Strong password" => "Contrasigno forte", "Groups" => "Gruppos", "Delete" => "Deler", "__language_name__" => "Interlingua", +"Security Warning" => "Aviso de securitate", "Log" => "Registro", "More" => "Plus", "Add your App" => "Adder tu application", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 6754ae2557f..7ada22648de 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,12 +1,21 @@ "Salvat", +"test email settings" => "verifică setările de e-mail", +"If you received this email, the settings seem to be correct." => "Dacă ai primit acest e-mail atunci setările par a fi corecte.", "Email sent" => "Mesajul a fost expediat", +"Send mode" => "Modul de expediere", "Encryption" => "Încriptare", +"Authentication method" => "Modul de autentificare", "Unable to load list from App Store" => "Imposibil de actualizat lista din App Store.", "Authentication error" => "Eroare la autentificare", +"Your full name has been changed." => "Numele tău complet a fost schimbat.", +"Unable to change full name" => "Nu s-a puput schimba numele complet", "Group already exists" => "Grupul există deja", "Unable to add group" => "Nu s-a putut adăuga grupul", +"Files decrypted successfully" => "Fișierele au fost decriptate cu succes", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Nu s-a puput decripta fișierele tale, verifică owncloud.log sau întreabă administratorul", +"Couldn't decrypt your files, check your password and try again" => "Nu s-a puput decripta fișierele tale, verifică parola și încearcă din nou", "Email saved" => "E-mail salvat", "Invalid email" => "E-mail invalid", "Unable to delete group" => "Nu s-a putut șterge grupul", @@ -18,17 +27,25 @@ $TRANSLATIONS = array( "Unable to remove user from group %s" => "Nu s-a putut elimina utilizatorul din grupul %s", "Couldn't update app." => "Aplicaţia nu s-a putut actualiza.", "Wrong password" => "Parolă greșită", +"No user supplied" => "Nici un utilizator furnizat", "Unable to change password" => "Imposibil de schimbat parola", +"Sending..." => "Se expediază...", "User Documentation" => "Documentație utilizator", "Update to {appversion}" => "Actualizat la {versiuneaaplicaţiei}", "Disable" => "Dezactivați", "Enable" => "Activare", "Please wait...." => "Aşteptaţi vă rog....", +"Error while disabling app" => "Eroare în timpul dezactivării aplicației", +"Error while enabling app" => "Eroare în timpul activării applicației", "Updating...." => "Actualizare în curs....", "Error while updating app" => "Eroare în timpul actualizării aplicaţiei", "Error" => "Eroare", "Update" => "Actualizare", "Updated" => "Actualizat", +"Select a profile picture" => "Selectează o imagine de profil", +"Very weak password" => "Parolă foarte slabă", +"Weak password" => "Parolă slabă", +"Decrypting files... Please wait, this can take some time." => "Decriptare fișiere... Te rog așteaptă, poate dura ceva timp.", "deleted" => "șters", "undo" => "Anulează ultima acțiune", "Unable to remove user" => "Imposibil de eliminat utilizatorul", @@ -39,14 +56,19 @@ $TRANSLATIONS = array( "A valid username must be provided" => "Trebuie să furnizaţi un nume de utilizator valid", "Error creating user" => "Eroare la crearea utilizatorului", "A valid password must be provided" => "Trebuie să furnizaţi o parolă validă", +"Warning: Home directory for user \"{user}\" already exists" => "Avertizare: Dosarul Acasă pentru utilizatorul \"{user}\" deja există", "__language_name__" => "_language_name_", "None" => "Niciuna", "Login" => "Autentificare", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "Avertisment de securitate", "Setup Warning" => "Atenţie la implementare", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă.", +"Please double check the installation guides." => "Vă rugăm să verificați ghiduri de instalare.", "Module 'fileinfo' missing" => "Modulul \"Fileinfo\" lipsește", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type.", +"Your PHP version is outdated" => "Versiunea PHP folosită este învechită", "Locale not working" => "Localizarea nu funcționează", "Internet connection not working" => "Conexiunea la internet nu funcționează", "Cron" => "Cron", @@ -57,13 +79,21 @@ $TRANSLATIONS = array( "Allow links" => "Pemite legături", "Allow users to share items to the public with links" => "Permite utilizatorilor să partajeze fișiere în mod public prin legături", "Allow public uploads" => "Permite încărcări publice", +"Allow users to enable others to upload into their publicly shared folders" => "Permite utilizatorilor sa activeze opțiunea de încărcare a fișierelor în dosarele lor publice de către alte persoane", "Allow resharing" => "Permite repartajarea", "Allow users to share items shared with them again" => "Permite utilizatorilor să repartajeze fișiere partajate cu ei", "Allow users to share with anyone" => "Permite utilizatorilor să partajeze cu oricine", "Allow users to only share with users in their groups" => "Permite utilizatorilor să partajeze doar cu utilizatori din același grup", +"Allow mail notification" => "Permite notificări prin e-mail", +"Allow users to send mail notification for shared files" => "Permite utilizatorilor sa expedieze notificări prin e-mail pentru dosarele comune", "Security" => "Securitate", +"Forces the clients to connect to %s via an encrypted connection." => "Forțează clienții să se conecteze la %s folosind o conexiune sigură", "Server address" => "Adresa server-ului", "Port" => "Portul", +"SMTP Username" => "Nume utilizator SMTP", +"SMTP Password" => "Parolă SMTP", +"Test email settings" => "Verifică setările de e-mail", +"Send email" => "Expediază mesajul", "Log" => "Jurnal de activitate", "Log level" => "Nivel jurnal", "More" => "Mai mult", @@ -88,22 +118,32 @@ $TRANSLATIONS = array( "Current password" => "Parola curentă", "New password" => "Noua parolă", "Change password" => "Schimbă parola", +"Full Name" => "Nume complet", "Email" => "Email", "Your email address" => "Adresa ta de email", "Profile picture" => "Imagine de profil", +"Upload new" => "Încarcă una nouă", +"Select new from Files" => "Selectează una din Fișiere", "Remove image" => "Înlătură imagine", +"Either png or jpg. Ideally square but you will be able to crop it." => "Doar png sau jpg de formă pătrată. ", "Cancel" => "Anulare", "Choose as profile image" => "Alege drept imagine de profil", "Language" => "Limba", "Help translate" => "Ajută la traducere", "WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Folosește această adresă pentru acces la fișierele tale folosind WebDAV", +"Log-in password" => "Parolă", +"Decrypt all Files" => "Decriptează toate fișierele", "Login Name" => "Autentificare", "Create" => "Crează", +"Admin Recovery Password" => "Parolă de recuperare a Administratorului", +"Enter the recovery password in order to recover the users files during password change" => "Introdu parola de recuperare pentru a recupera fișierele utilizatorilor în timpul schimbării parolei", "Default Storage" => "Stocare implicită", "Unlimited" => "Nelimitată", "Other" => "Altele", "Username" => "Nume utilizator", "Storage" => "Stocare", +"change full name" => "schimbă numele complet", "set new password" => "setează parolă nouă", "Default" => "Implicită" ); diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 4be0dbc6ee7..c633d472684 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -3,6 +3,8 @@ $TRANSLATIONS = array( "Invalid value supplied for %s" => "Navedena je napačna vrednost za %s", "Saved" => "Shranjeno", "test email settings" => "preizkusi nastavitve elektronske pošte", +"If you received this email, the settings seem to be correct." => "Če ste prejeli to sporočilo, so nastavitve pravilne.", +"A problem occurred while sending the e-mail. Please revisit your settings." => "Prišlo je do napake med pošiljanjem sporočila na elektronski naslov. Spremeniti je treba nastavitve.", "Email sent" => "Elektronska pošta je poslana", "Send mode" => "Način pošiljanja", "Encryption" => "Šifriranje", @@ -93,6 +95,9 @@ $TRANSLATIONS = array( "Internet connection not working" => "Internetna povezava ne deluje.", "This 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." => "Na voljo ni delujoče internetne povezave. To pomeni, da nekaterih možnosti, kot so priklapljanje zunanje shrambe, obveščanja o posodobitvah in nameščanje programov tretje roke ni podprto. Dostop do datotek z oddaljenih mest in pošiljanje obvestil preko elektronske pošte je verjetno še vedno mogoče. Za omogočanje vseh zmožnosti mora biti vzpostavljena tudi ustrezna internetna povezava.", "Cron" => "Periodično opravilo", +"Last cron was executed at %s." => "Zadnje opravilo cron je bilo izvedeno ob %s.", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "Zadnje opravilo cron je bilo izvedeno ob %s. To je več kot uro nazaj. Nekaj je očitno narobe.", +"Cron was not executed yet!" => "Opravilo Cron še ni zagnano!", "Execute one task with each page loaded" => "Izvedi eno nalogo z vsako naloženo stranjo.", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "Datoteka cron.php je vpisana v storitvi webcron za potrditev sklica vsakih 15 minut pri povezavi preko HTTP.", "Use systems cron service to call the cron.php file every 15 minutes." => "Uporabi storitev periodičnih opravil za klic datoteke cron.php vsakih 15 minut.", @@ -108,6 +113,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Uporabnikom dovoli souporabo s komerkoli", "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine", "Allow mail notification" => "Dovoli obvestila preko elektronske pošte", +"Allow users to send mail notification for shared files" => "Dovoli uporabnikom pošiljati obvestila o souporabi datotek po elektronski pošti.", "Security" => "Varnost", "Enforce HTTPS" => "Zahtevaj uporabo HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Vsili povezavo odjemalca z %s preko šifrirane povezave.", diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 0d70fc225fa..f3b189e08b8 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -12,11 +12,11 @@ $TRANSLATIONS = array( "Authentication method" => "Autentiseringsmetod", "Unable to load list from App Store" => "Kan inte ladda listan från App Store", "Authentication error" => "Fel vid autentisering", -"Your full name has been changed." => "Ditt fulla namn har ändrats", +"Your full name has been changed." => "Hela ditt namn har ändrats", "Unable to change full name" => "Kunde inte ändra hela namnet", "Group already exists" => "Gruppen finns redan", "Unable to add group" => "Kan inte lägga till grupp", -"Files decrypted successfully" => "Filer dekrypteras utan fel", +"Files decrypted successfully" => "Filerna dekrypterades utan fel", "Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "Det gick inte att dekryptera dina filer, kontrollera din owncloud.log eller fråga administratören", "Couldn't decrypt your files, check your password and try again" => "Det gick inte att dekryptera filerna, kontrollera ditt lösenord och försök igen", "Email saved" => "E-post sparad", @@ -114,6 +114,7 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "Tillåt delning med alla", "Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Allow mail notification" => "Tillåt e-post notifikation", +"Allow users to send mail notification for shared files" => "Tillåt användare att skicka mailnotifieringar för delade filer", "Security" => "Säkerhet", "Enforce HTTPS" => "Kräv HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 7aadb1278d5..0c8adce29c0 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -26,6 +26,10 @@ $TRANSLATIONS = array( "Error" => "Помилка", "Update" => "Оновити", "Updated" => "Оновлено", +"Very weak password" => "Дуже слабкий пароль", +"Weak password" => "Слабкий пароль", +"Good password" => "Добрий пароль", +"Strong password" => "Надійний пароль", "deleted" => "видалені", "undo" => "відмінити", "Unable to remove user" => "Неможливо видалити користувача", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 242b72abc21..567d6fb5940 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -1,11 +1,24 @@ "無效的提供值 %s", +"Saved" => "已儲存", +"test email settings" => "測試郵件設定", +"If you received this email, the settings seem to be correct." => "假如您收到這個郵件,此設定看起來是正確的。", +"A problem occurred while sending the e-mail. Please revisit your settings." => "當寄出郵件時發生問題。請重新檢視您的設定。", "Email sent" => "Email 已寄出", +"You need to set your user email before being able to send test emails." => "在準備要寄出測試郵件時您需要設定您的使用者郵件。", +"Send mode" => "寄送模式", "Encryption" => "加密", +"Authentication method" => "驗證方式", "Unable to load list from App Store" => "無法從 App Store 讀取清單", "Authentication error" => "認證錯誤", +"Your full name has been changed." => "您的全名已變更。", +"Unable to change full name" => "無法變更全名", "Group already exists" => "群組已存在", "Unable to add group" => "群組增加失敗", +"Files decrypted successfully" => "檔案解密成功", +"Couldn't decrypt your files, please check your owncloud.log or ask your administrator" => "無法解密您的檔案,請檢查您的 owncloud.log 或是詢問您的管理者", +"Couldn't decrypt your files, check your password and try again" => "無法解密您的檔案,確認您的密碼並再重試一次", "Email saved" => "Email已儲存", "Invalid email" => "無效的email", "Unable to delete group" => "群組刪除錯誤", @@ -22,7 +35,9 @@ $TRANSLATIONS = array( "Wrong admin recovery password. Please check the password and try again." => "錯誤的管理者還原密碼", "Back-end doesn't support password change, but the users encryption key was successfully updated." => "後端不支援變更密碼,但成功更新使用者的加密金鑰", "Unable to change password" => "無法修改密碼", +"Sending..." => "寄送中...", "User Documentation" => "用戶說明文件", +"Admin Documentation" => "管理者文件", "Update to {appversion}" => "更新至 {appversion}", "Disable" => "停用", "Enable" => "啟用", @@ -35,6 +50,11 @@ $TRANSLATIONS = array( "Update" => "更新", "Updated" => "已更新", "Select a profile picture" => "選擇大頭貼", +"Very weak password" => "非常弱的密碼", +"Weak password" => "弱的密碼", +"So-so password" => "普通的密碼", +"Good password" => "好的密碼", +"Strong password" => "很強的密碼", "Decrypting files... Please wait, this can take some time." => "檔案解密中,請稍候。", "deleted" => "已刪除", "undo" => "復原", @@ -48,19 +68,37 @@ $TRANSLATIONS = array( "A valid password must be provided" => "一定要提供一個有效的密碼", "Warning: Home directory for user \"{user}\" already exists" => "警告:使用者 {user} 的家目錄已經存在", "__language_name__" => "__language_name__", +"Everything (fatal issues, errors, warnings, info, debug)" => "全部(嚴重問題,錯誤,警告,資訊,除錯)", +"Info, warnings, errors and fatal issues" => "資訊,警告,錯誤和嚴重問題", +"Warnings, errors and fatal issues" => "警告,錯誤和嚴重問題", +"Errors and fatal issues" => "錯誤和嚴重問題", +"Fatal issues only" => "只有嚴重問題", "None" => "無", "Login" => "登入", +"Plain" => "文字", +"NT LAN Manager" => "NT LAN Manager", +"SSL" => "SSL", +"TLS" => "TLS", "Security Warning" => "安全性警告", +"You are accessing %s via HTTP. We strongly suggest you configure your server to require using HTTPS instead." => "您正透過未加密網頁存取 %s。我們強烈建議您設定您的主機必須使用加密網頁。", "Your data directory and your files are probably accessible from the internet. The .htaccess file 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." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", "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-type 支援。", +"Your PHP version is outdated" => "您的 PHP 版本已過期", +"Your PHP version is outdated. We strongly recommend to update to 5.3.8 or newer because older versions are known to be broken. It is possible that this installation is not working correctly." => "您的 PHP 版本已過期。我們強烈建議更新到 5.3.8 或更新的版本,因為舊的版本已知會毀損。這個可能會在安裝後無法使用。", "Locale not working" => "語系無法運作", +"System locale can not be set to a one which supports UTF-8." => "系統語系無法設定只支援 UTF-8", +"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 one of the following locales: %s." => "我們強烈建議在您的系統上安裝必要的套件來支援以下的語系: %s", "Internet connection not working" => "無網際網路存取", "This 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." => "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。", "Cron" => "Cron", +"Last cron was executed at %s." => "最後的排程已執行於 %s。", +"Last cron was executed at %s. This is more than an hour ago, something seems wrong." => "最後的排程已執行於 %s。現在過了好幾個小時,看起來是有錯誤。", +"Cron was not executed yet!" => "排程沒有執行!", "Execute one task with each page loaded" => "當頁面載入時,執行", "cron.php is registered at a webcron service to call cron.php every 15 minutes over http." => "已經與 webcron 服務註冊好,將會每15分鐘呼叫 cron.php", "Use systems cron service to call the cron.php file every 15 minutes." => "使用系統的 cron 服務每15分鐘呼叫 cron.php 一次", @@ -76,13 +114,22 @@ $TRANSLATIONS = array( "Allow users to share with anyone" => "允許使用者與任何人分享檔案", "Allow users to only share with users in their groups" => "僅允許使用者在群組內分享", "Allow mail notification" => "允許郵件通知", +"Allow users to send mail notification for shared files" => "允許使用者寄送有關分享檔案的郵件通知", "Security" => "安全性", "Enforce HTTPS" => "強制啟用 HTTPS", "Forces the clients to connect to %s via an encrypted connection." => "強迫用戶端使用加密連線連接到 %s", "Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。", +"Email Server" => "郵件伺服器", +"This is used for sending out notifications." => "這是使用於寄送通知。", +"From address" => "寄件地址", +"Authentication required" => "必須驗證", "Server address" => "伺服器位址", "Port" => "連接埠", "Credentials" => "認證", +"SMTP Username" => "SMTP 帳號", +"SMTP Password" => "SMTP 密碼", +"Test email settings" => "測試郵件設定", +"Send email" => "寄送郵件", "Log" => "紀錄", "Log level" => "紀錄層級", "More" => "更多", @@ -92,7 +139,9 @@ $TRANSLATIONS = array( "Add your App" => "添加你的 App", "More Apps" => "更多Apps", "Select an App" => "選擇一個應用程式", +"Documentation:" => "文件:", "See application page at apps.owncloud.com" => "查看應用程式頁面於 apps.owncloud.com", +"See application website" => "檢視應用程式網站", "-licensed by " => "-核准: ", "Administrator Documentation" => "管理者說明文件", "Online Documentation" => "線上說明文件", @@ -108,19 +157,23 @@ $TRANSLATIONS = array( "Current password" => "目前密碼", "New password" => "新密碼", "Change password" => "變更密碼", +"Full Name" => "全名", "Email" => "信箱", "Your email address" => "您的電子郵件信箱", +"Fill in an email address to enable password recovery and receive notifications" => "填入電子郵件地址來啟用忘記密碼和接收通知的功能", "Profile picture" => "個人資料照片", "Upload new" => "上傳新的", "Select new from Files" => "從已上傳的檔案中選一個", "Remove image" => "移除圖片", "Either png or jpg. Ideally square but you will be able to crop it." => "可以使用 png 或 jpg 格式,最好是方形的,但是您之後也可以裁剪它", +"Your avatar is provided by your original account." => "您的圖像是由您原來的帳號所提供的。", "Cancel" => "取消", "Choose as profile image" => "設定為大頭貼", "Language" => "語言", "Help translate" => "幫助翻譯", "WebDAV" => "WebDAV", "Use this address to access your Files via WebDAV" => "使用這個地址來透過 WebDAV 存取檔案", +"The encryption app is no longer enabled, please decrypt all your files" => "加密的軟體不能長時間啟用,請解密所有您的檔案", "Log-in password" => "登入密碼", "Decrypt all Files" => "解密所有檔案", "Login Name" => "登入名稱", @@ -128,10 +181,12 @@ $TRANSLATIONS = array( "Admin Recovery Password" => "管理者復原密碼", "Enter the recovery password in order to recover the users files during password change" => "為了修改密碼時能夠取回使用者資料,請輸入另一組還原用密碼", "Default Storage" => "預設儲存區", +"Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" => "請輸入空間配額(例如: \"512 MB\"或是 \"12 GB\")", "Unlimited" => "無限制", "Other" => "其他", "Username" => "使用者名稱", "Storage" => "儲存區", +"change full name" => "變更全名", "set new password" => "設定新密碼", "Default" => "預設" ); -- cgit v1.2.3